Answers for "laravel migration type"

PHP
13

laravel migation error

use Illuminate\Support\Facades\Schema;

public function boot()
{
    Schema::defaultStringLength(191);
}
Posted by: Guest on April-29-2020
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
2

laravel migration integer

$table->integer('votes');
Posted by: Guest on March-22-2021
3

laravel migration integer

$table->bigInteger('votes');
Posted by: Guest on May-22-2020
0

laravel migration type to store html

$table->text('content');
Posted by: Guest on October-15-2021
0

how to set db table type in laravel

Schema::create('users', function (Blueprint $table) {
    $table->engine = 'InnoDB';

    // ...
});
Posted by: Guest on March-06-2021

Code answers related to "laravel migration type"

Browse Popular Code Answers by Language