TaoLer/vendor/topthink/think-migration/phinx/Seed/Seed.template.php.dist
2024-04-01 10:04:16 +08:00

21 lines
357 B
Plaintext

<?php
$namespaceDefinition
use $useClassName;
class $className extends $baseClassName
{
/**
* Run Method.
*
* Write your database seeder using this method.
*
* More information on writing seeders is available here:
* https://book.cakephp.org/phinx/0/en/seeding.html
*/
public function run(): void
{
}
}