55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SubjectsTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('subjects')->insert([
|
|
'name' => 'Przedmiot 1',
|
|
'weekday' => 'Poniedziałek',
|
|
'time' => '15:30',
|
|
'room_id' => 1,
|
|
'user_id' => 1
|
|
]);
|
|
|
|
DB::table('subjects')->insert([
|
|
'name' => 'Przedmiot 2',
|
|
'weekday' => 'Wtorek',
|
|
'time' => '17:15',
|
|
'room_id' => 6,
|
|
'user_id' => 1
|
|
]);
|
|
|
|
DB::table('subjects')->insert([
|
|
'name' => 'Przedmiot 3',
|
|
'weekday' => 'Środa',
|
|
'time' => '17:15',
|
|
'room_id' => 23,
|
|
'user_id' => 1
|
|
]);
|
|
|
|
DB::table('subjects')->insert([
|
|
'name' => 'Przedmiot 4',
|
|
'weekday' => 'Czwartek',
|
|
'time' => '17:15',
|
|
'room_id' => 45,
|
|
'user_id' => 1
|
|
]);
|
|
|
|
DB::table('subjects')->insert([
|
|
'name' => 'Przedmiot 5',
|
|
'weekday' => 'Piątek',
|
|
'time' => '17:15',
|
|
'room_id' => 47,
|
|
'user_id' => 1
|
|
]);
|
|
}
|
|
}
|