create-sip 1.5.4 → 1.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/expressapi/package.json +1 -1
- package/manager.js +2 -0
- package/package.json +1 -1
package/expressapi/package.json
CHANGED
package/manager.js
CHANGED
|
@@ -106,6 +106,8 @@ DB_STORAGE=database.sqlite
|
|
|
106
106
|
console.log('Usable commands:');
|
|
107
107
|
console.log(' node op make:model something');
|
|
108
108
|
console.log(' node op make:controller something');
|
|
109
|
+
console.log(' node op make:migration something');
|
|
110
|
+
console.log(' node op make:seeder something');
|
|
109
111
|
console.log('The model and controller names must be');
|
|
110
112
|
console.log('given in the singular. More info:');
|
|
111
113
|
console.log(' node op help')
|