26 lines
706 B
PHP
26 lines
706 B
PHP
<?php
|
|
|
|
use Phinx\Db\Adapter\MysqlAdapter;
|
|
|
|
class TimeStampDefaultforApiKeys extends Phinx\Migration\AbstractMigration
|
|
{
|
|
public function change()
|
|
{
|
|
$this->table('apikeys', [
|
|
'id' => false,
|
|
'primary_key' => ['id'],
|
|
'engine' => 'InnoDB',
|
|
'encoding' => 'utf8mb4',
|
|
'collation' => 'utf8mb4_unicode_ci',
|
|
'comment' => '',
|
|
'row_format' => 'DYNAMIC',
|
|
])
|
|
->changeColumn('created_at', 'timestamp', [
|
|
'null' => true,
|
|
'default' => 'current_timestamp()',
|
|
'after' => 'apikey',
|
|
])
|
|
->save();
|
|
}
|
|
}
|