Answers for "add table to migration laravel 8"

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

change existing migration laravel

php artisan make:migration update_description_in_products_table
Posted by: Guest on November-24-2020

Code answers related to "add table to migration laravel 8"

Browse Popular Code Answers by Language