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,20 @@
<?php
use Illuminate\Database\Seeder;
class SeedMode extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('modes')->insert([
'created_at' => now(),
'name' => 'ViewData',
'note' => 'Original ViewData/VideoTex 40x25 char mode.',
]);
}
}