Answers for "migration run laravel"

2

laravel make migration

php artisan make:migration CreateUsersTable
Posted by: Guest on May-04-2020
1

laravel run query migration

DB::statement("
    CREATE TABLE `your_table` (
        `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
        `status` tinyint(3) unsigned DEFAULT NULL,
        PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
");
Posted by: Guest on August-23-2021

Code answers related to "migration run laravel"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language