Add some test data for long url bug
This commit is contained in:
parent
e3ee803384
commit
09d0f9b71b
2 changed files with 18 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
class ClientsTableSeeder extends Seeder
|
||||
{
|
||||
|
@ -17,5 +18,12 @@ class ClientsTableSeeder extends Seeder
|
|||
'created_at' => '2016-01-12 16:03:00',
|
||||
'updated_at' => '2016-01-12 16:03:00',
|
||||
]);
|
||||
|
||||
DB::table('clients')->insert([
|
||||
'client_url' => 'https://beta.indigenous.abode.pub/ios/',
|
||||
'client_name' => 'https://beta.indigenous.abode.pub/ios/',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue