Archived
1
0
Fork 0
This repository has been archived on 2026-04-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
httpcb/app/migrations/20180321203158_user_reg_date.php

18 lines
361 B
PHP

<?php
use Phinx\Migration\AbstractMigration;
class UserRegDate extends AbstractMigration
{
/**
* Add regdate column
*/
public function up()
{
$this->table('user')
->addColumn('regdate', 'datetime', [
'default' => 'CURRENT_TIMESTAMP',
'after' => 'email'
])->save();
}
}