mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
11 lines
200 B
PHP
11 lines
200 B
PHP
<?php
|
|
|
|
use Phinx\Seed\AbstractSeed;
|
|
|
|
class InviteSource extends AbstractSeed
|
|
{
|
|
public function run(): void {
|
|
$this->table('invite_source')->insert(['name' => 'Personal'])->save();
|
|
}
|
|
}
|