Skip to content

Commit b0b7cc3

Browse files
committed
chore: wip
1 parent bda2ec0 commit b0b7cc3

File tree

6 files changed

+4
-25
lines changed

6 files changed

+4
-25
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ buddy make:model Car # bootstraps a Car model
153153
buddy make:database cars # creates a cars database
154154
buddy make:migration create_cars_table # creates a cars migration file
155155
buddy make:factory cars # creates a Car factory file
156-
buddy make:seed cars # creates a Car seed file
157156
buddy make:table cars # bootstraps a cars data table
158157
buddy make:notification welcome-email # bootstraps a welcome-email notification
159158
buddy make:lang de # bootstraps a lang/de.yml language file

app/Actions/Buddy/CommandsAction.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -418,21 +418,6 @@ export default new Action({
418418
],
419419
options: [],
420420
},
421-
{
422-
signature: 'buddy make:seed',
423-
description: 'Creates a new seeder file',
424-
notes: '',
425-
synopsis: 'buddy make:seed <name>',
426-
aliases: [],
427-
arguments: [
428-
{
429-
name: 'name',
430-
description: 'The seeder to be created.',
431-
value_required: true,
432-
},
433-
],
434-
options: [],
435-
},
436421
{
437422
signature: 'buddy make:table',
438423
description: 'Bootstraps a new data table',

database/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,17 @@ The database directory is where you would store your custom migrations and seeds
1010
The following command will bootstrap a new migration file in the `database/migrations` directory:
1111

1212
```bash
13-
buddy make:migration create_users_table
14-
# apply updates to the migrations, as needed
13+
# automated migrations
1514
buddy migrate
1615
```
1716

18-
And this command will bootstrap a new seed file in the `database/seeds` directory:
19-
2017
```bash
21-
buddy make:seed users
22-
# apply updates to the seeds, as needed
18+
# automated seeds
2319
buddy seed
2420
```
2521

22+
In case you need more seeding customization, you can create a `./database/seeder.ts` which, if found, is triggered instead.
23+
2624
Click here to learn more.
2725

2826
## 🚜 Contributing

docs/guide/buddy.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ buddy make:model Car # bootstraps a Car model
7979
buddy make:database cars # creates a cars database
8080
buddy make:migration create_cars_table # creates a cars migration file
8181
buddy make:factory cars # creates a Car factory file
82-
buddy make:seed cars # creates a Car seed file
8382
buddy make:table cars # bootstraps a cars data table
8483
buddy make:notification welcome-email # bootstraps a welcome-email notification
8584
buddy make:lang de # bootstraps a lang/de.yml language file

storage/framework/core/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ buddy make:model Car # bootstraps a Car model
153153
buddy make:database cars # creates a cars database
154154
buddy make:migration create_cars_table # creates a cars migration file
155155
buddy make:factory cars # creates a Car factory file
156-
buddy make:seed cars # creates a Car seed file
157156
buddy make:table cars # bootstraps a cars data table
158157
buddy make:notification welcome-email # bootstraps a welcome-email notification
159158
buddy make:lang de # bootstraps a lang/de.yml language file

storage/framework/core/buddy/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ buddy make:model Car # bootstraps a Car model
153153
buddy make:database cars # creates a cars database
154154
buddy make:migration create_cars_table # creates a cars migration file
155155
buddy make:factory cars # creates a Car factory file
156-
buddy make:seed cars # creates a Car seed file
157156
buddy make:table cars # bootstraps a cars data table
158157
buddy make:notification welcome-email # bootstraps a welcome-email notification
159158
buddy make:lang de # bootstraps a lang/de.yml language file

0 commit comments

Comments
 (0)