79 lines
2.3 KiB
PHP
79 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class WeightSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('weights')->insert([
|
|
[
|
|
'id' => '01b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.1',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '02b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.2',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '03b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.3',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '04b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.4',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '05b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.5',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '06b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.6',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '07b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.7',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '08b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.8',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '09b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '0.9',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '10b9105e-665d-41a9-8a72-7667d08430ce',
|
|
'weight' => '1',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
]);
|
|
}
|
|
}
|