Размер файла: 1.4Kb
<?php
use Phinx\Migration\AbstractMigration;
use Phinx\Db\Adapter\MysqlAdapter;
class CreateTopicsTable extends AbstractMigration
{
/**
* Change Method.
*/
public function change()
{
if (! $this->hasTable('topics')) {
$table = $this->table('topics', ['collation' => env('DB_COLLATION')]);
$table
->addColumn('forum_id', 'integer')
->addColumn('title', 'string', ['limit' => 50])
->addColumn('user_id', 'integer')
->addColumn('closed', 'boolean', ['default' => 0])
->addColumn('locked', 'boolean', ['default' => 0])
->addColumn('moderators', 'string', ['null' => true])
->addColumn('note', 'string', ['null' => true])
->addColumn('updated_at', 'integer', ['null' => true])
->addColumn('count_posts', 'integer')
->addColumn('last_post_id', 'integer', ['null' => true])
->addColumn('created_at', 'integer')
->addIndex('forum_id')
->addIndex('locked')
->addIndex('updated_at');
$mysql = $this->query('SHOW VARIABLES LIKE "version"')->fetch();
if(version_compare($mysql['Value'], '5.6.0', '>=')) {
$table->addIndex('title', ['type' => 'fulltext']);
}
$table->create();
}
}
}