|
1 | 1 | {
|
2 | 2 | "name": "@athenna/database",
|
3 |
| - "version": "4.56.0", |
| 3 | + "version": "4.57.0", |
4 | 4 | "description": "The Athenna database handler for SQL/NoSQL.",
|
5 | 5 | "license": "MIT",
|
6 | 6 | "author": "João Lenon <lenon@athenna.io>",
|
|
53 | 53 | "./commands/DbFreshCommand": "./src/commands/DbFreshCommand.js",
|
54 | 54 | "./commands/DbSeedCommand": "./src/commands/DbSeedCommand.js",
|
55 | 55 | "./commands/DbWipeCommand": "./src/commands/DbWipeCommand.js",
|
| 56 | + "./commands/MakeCrudCommand": "./src/commands/MakeCrudCommand.js", |
56 | 57 | "./commands/MakeMigrationCommand": "./src/commands/MakeMigrationCommand.js",
|
57 | 58 | "./commands/MakeModelCommand": "./src/commands/MakeModelCommand.js",
|
58 | 59 | "./commands/MakeSeederCommand": "./src/commands/MakeSeederCommand.js",
|
|
223 | 224 | },
|
224 | 225 | "make:migration": {
|
225 | 226 | "path": "#src/commands/MakeMigrationCommand"
|
| 227 | + }, |
| 228 | + "make:crud": { |
| 229 | + "path": "#src/commands/MakeCrudCommand" |
226 | 230 | }
|
227 | 231 | },
|
228 | 232 | "templates": {
|
229 | 233 | "migration": "./templates/migration.edge",
|
230 | 234 | "model": "./templates/model.edge",
|
231 |
| - "seeder": "./templates/seeder.edge" |
| 235 | + "seeder": "./templates/seeder.edge", |
| 236 | + "crud-model": "./templates/crud-model.edge", |
| 237 | + "crud-migration": "./templates/crud-migration.edge", |
| 238 | + "crud-service": "./templates/crud-service.edge", |
| 239 | + "crud-controller": "./templates/crud-controller.edge" |
232 | 240 | }
|
233 | 241 | }
|
234 | 242 | }
|
0 commit comments