Answers for "how to make a migration file from a database i have made laravel"

PHP
5

how to make-migrations in laravel

php artisan make:migration create_users_table --create=users

php artisan make:migration add_votes_to_users_table --table=users
Posted by: Guest on July-18-2020
2

how create migration in laravel

//to create migration file in PHP use the artisan command "make"
php artisan make:migration create_users_table
// migration file must follow the naming convention "operation_tableName_table"
//Migration file to add column naming convention would be "add_tablename_table"
Posted by: Guest on April-25-2020
0

create database from migration laravel for all

php artisan migrate --force
Posted by: Guest on August-05-2020

Code answers related to "how to make a migration file from a database i have made laravel"

Browse Popular Code Answers by Language