Just comment out the old calls on DatabaseSeeder? You can also use
artisan db:seed --class=UserTableSeeder
to seed a specific table
If the problem is not to duplicate data, you can truncate the table with
Model::truncate();
directly in seed before inserting new rows
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community