File: /home/imensosw/.trash/database.1/seeds/MigrationsTableSeeder.php
<?php
use Illuminate\Database\Seeder;
class MigrationsTableSeeder extends Seeder
{
/**
* Auto generated seed file
*
* @return void
*/
public function run()
{
\DB::table('migrations')->delete();
\DB::table('migrations')->insert(array (
0 =>
array (
'id' => 1,
'migration' => '2014_10_12_000000_create_users_table',
'batch' => 1,
),
1 =>
array (
'id' => 2,
'migration' => '2014_10_12_100000_create_password_resets_table',
'batch' => 1,
),
2 =>
array (
'id' => 3,
'migration' => '2019_08_19_000000_create_failed_jobs_table',
'batch' => 1,
),
3 =>
array (
'id' => 4,
'migration' => '2020_08_16_120815_entrust_setup_tables',
'batch' => 2,
),
4 =>
array (
'id' => 5,
'migration' => '2016_02_14_090604_create_items_table',
'batch' => 3,
),
5 =>
array (
'id' => 6,
'migration' => '2020_10_05_135544_create_days_table',
'batch' => 4,
),
6 =>
array (
'id' => 7,
'migration' => '2020_10_05_135801_create_time_slots_table',
'batch' => 4,
),
7 =>
array (
'id' => 8,
'migration' => '2020_10_05_140117_create_user_availabilitys_table',
'batch' => 4,
),
8 =>
array (
'id' => 9,
'migration' => '2020_10_06_094810_create_payment_method_types_table',
'batch' => 5,
),
9 =>
array (
'id' => 10,
'migration' => '2020_10_06_105036_add_payment_method_type_id_to_user_bank_accounts_table',
'batch' => 6,
),
10 =>
array (
'id' => 11,
'migration' => '2020_01_10_100000_add_status_id_to_evaluations_table',
'batch' => 7,
),
11 =>
array (
'id' => 12,
'migration' => '2020_10_09_100000_add_evaluation_file_to_evaluations_table',
'batch' => 8,
),
12 =>
array (
'id' => 13,
'migration' => '2020_10_09_200000_add_answer_file_to_user_evaluations_table',
'batch' => 9,
),
13 =>
array (
'id' => 15,
'migration' => '2020_10_12_100000_add_instructions_to_evaluations_table',
'batch' => 10,
),
14 =>
array (
'id' => 16,
'migration' => '2020_10_13_100000_create_user_skill_pairs_table',
'batch' => 11,
),
));
}
}