26 lines
481 B
PHP
26 lines
481 B
PHP
<?php
|
|
|
|
use App\Models\App\App;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class AppSeeder extends Seeder
|
|
{
|
|
protected $id = 20000;
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
if (DB::table('apps')->count()) {
|
|
return ;
|
|
}
|
|
|
|
App::create(['id' => $this->id,'appkey' => 'test','name' => '测试站点']);
|
|
}
|
|
}
|