Don’t try and seed the indiewebuser table
This commit is contained in:
parent
dcae136b60
commit
08cdfe1e44
2 changed files with 0 additions and 18 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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')]);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue