Created frames table with migration

This commit is contained in:
Deon George
2018-12-03 23:59:22 +11:00
parent 4504818e25
commit 3651a6508a
11 changed files with 1049 additions and 732 deletions

View File

@@ -0,0 +1,21 @@
<?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.',
]);
}
}