Answers for "make migration larvel"

PHP
1

pip install urllib

pip install urllib3
Posted by: Guest on February-10-2021
24

php artisan make migration

php artisan make:migration create_users_table
Posted by: Guest on January-14-2021
21

laravel foreign key

Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

    $table->foreign('user_id')->references('id')->on('users');
});
OR
Schema::table('posts', function (Blueprint $table) {
    $table->foreignId('user_id')->constrained();
});
Posted by: Guest on December-09-2020
5

laravel migration

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
0

create migration in laravel

php artisan make:migration CreateCategoriesTable
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language