Answers for "how to add value in db from migration laravel"

PHP
2

insert rows in migrations laravel

public function up()
{
    // Create the table
    Schema::create('users', function($table){
        $table->increments('id');
        $table->string('email', 255);
        $table->string('password', 64);
        $table->boolean('verified');
        $table->string('token', 255);
        $table->timestamps();
    });

    // Insert some stuff
    DB::table('users')->insert(
        array(
            'email' => '[email protected]',
            'verified' => true
        )
    );
}
Posted by: Guest on March-18-2020
0

laravel 6 migration add column to existing table

migration add column to existing table in laravel 6
Posted by: Guest on September-09-2020

Code answers related to "how to add value in db from migration laravel"

Browse Popular Code Answers by Language