Don’t try and seed the indiewebuser table

This commit is contained in:
Jonny Barnes 2017-10-19 13:55:04 +01:00
parent dcae136b60
commit 08cdfe1e44
2 changed files with 0 additions and 18 deletions

View file

@ -17,7 +17,6 @@ class DatabaseSeeder extends Seeder
$this->call(PlacesTableSeeder::class);
$this->call(NotesTableSeeder::class);
$this->call(WebMentionsTableSeeder::class);
$this->call(IndieWebUserTableSeeder::class);
$this->call(LikesTableSeeder::class);
$this->call(BookmarksTableSeeder::class);
}

View file

@ -1,17 +0,0 @@
<?php
use App\IndieWebUser;
use Illuminate\Database\Seeder;
class IndieWebUserTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
IndieWebUser::create(['me' => config('app.url')]);
}
}