Created frames table with migration
This commit is contained in:
20
database/seeds/SeedMode.php
Normal file
20
database/seeds/SeedMode.php
Normal 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.',
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user