22 lines
349 B
PHP
22 lines
349 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SeedCUG extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('cugs')->insert([
|
|
'created_at' => now(),
|
|
'id' => 0,
|
|
'name' => 'Public Frames',
|
|
'note' => 'All frames belong to this CUG if not any other.',
|
|
]);
|
|
}
|
|
}
|