Skip to content

Commit 201ed6d

Browse files
chore(docs): deploy version v29.10.0 (#4924)
Co-authored-by: julienrbrt <29894366+julienrbrt@users.noreply.github.com>
1 parent ca9f496 commit 201ed6d

1 file changed

Lines changed: 37 additions & 1 deletion

File tree

docs/versioned_docs/version-v29/03-CLI-Commands/01-cli-commands.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $ ignite scaffold chain example
2121

2222
Announcements:
2323

24-
⋆ A new release has appeared! v29.8.0 has just been released :)
24+
⋆ A new release has appeared! v29.9.0 has just been released :)
2525
⋆ Satisfied with Ignite? Or totally fed-up with it? Tell us: https://bit.ly/3WZS2uS
2626

2727

@@ -1330,6 +1330,7 @@ with an "--ibc" flag. Note that the default module is not IBC-enabled.
13301330
* [ignite scaffold list](#ignite-scaffold-list) - CRUD for data stored as an array
13311331
* [ignite scaffold map](#ignite-scaffold-map) - CRUD for data stored as key-value pairs
13321332
* [ignite scaffold message](#ignite-scaffold-message) - Message to perform state transition on the blockchain
1333+
* [ignite scaffold migration](#ignite-scaffold-migration) - Module migration boilerplate
13331334
* [ignite scaffold module](#ignite-scaffold-module) - Custom Cosmos SDK module
13341335
* [ignite scaffold packet](#ignite-scaffold-packet) - Message for sending an IBC packet
13351336
* [ignite scaffold params](#ignite-scaffold-params) - Parameters for a custom Cosmos SDK module
@@ -1775,6 +1776,41 @@ ignite scaffold message [name] [field1:type1] [field2:type2] ... [flags]
17751776
* [ignite scaffold](#ignite-scaffold) - Create a new blockchain, module, message, query, and more
17761777

17771778

1779+
## ignite scaffold migration
1780+
1781+
Module migration boilerplate
1782+
1783+
**Synopsis**
1784+
1785+
Scaffold no-op migration boilerplate for an existing Cosmos SDK module.
1786+
1787+
This command creates a new migration file in "x/<module>/migrations/vN/",
1788+
increments the module consensus version, and registers the new migration handler
1789+
inside "x/<module>/module/module.go".
1790+
1791+
```
1792+
ignite scaffold migration [module] [flags]
1793+
```
1794+
1795+
**Options**
1796+
1797+
```
1798+
-h, --help help for migration
1799+
-p, --path string path of the app (default ".")
1800+
-y, --yes answers interactive yes/no questions with yes
1801+
```
1802+
1803+
**Options inherited from parent commands**
1804+
1805+
```
1806+
-v, --verbose verbose output
1807+
```
1808+
1809+
**SEE ALSO**
1810+
1811+
* [ignite scaffold](#ignite-scaffold) - Create a new blockchain, module, message, query, and more
1812+
1813+
17781814
## ignite scaffold module
17791815

17801816
Custom Cosmos SDK module

0 commit comments

Comments
 (0)