Files
sentos/database/seeds/Area.php
2022-11-01 11:42:28 +08:00

19 lines
320 B
PHP

<?php
use think\migration\Seeder;
class Area extends Seeder
{
/**
* Run Method.
*
* Write your database seeder using this method.
*
* More information on writing seeders is available here:
* http://docs.phinx.org/en/latest/seeding.html
*/
public function run()
{
}
}