Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.9 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
use yii\db\Migration;
/**
* Initializes i18n messages tables.
*
9 years ago
*
*
* @author Dmitry Naumenko <d.naumenko.a@gmail.com>
* @since 2.0.7
*/
class m150207_210500_i18n_init extends Migration
{
public function up()
{
$tableOptions = null;
if ($this->db->driverName === 'mysql') {
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
}
$this->createTable('{{%source_message}}', [
'id' => $this->primaryKey(),
'category' => $this->string(),
'message' => $this->text(),
], $tableOptions);
$this->createTable('{{%message}}', [
'id' => $this->integer()->notNull(),
'language' => $this->string(16)->notNull(),
'translation' => $this->text(),
], $tableOptions);
$this->addPrimaryKey('pk_message_id_language', '{{%message}}', ['id', 'language']);
$onUpdateConstraint = 'RESTRICT';
if ($this->db->driverName === 'sqlsrv') {
// 'NO ACTION' is equivalent to 'RESTRICT' in MSSQL
$onUpdateConstraint = 'NO ACTION';
}
$this->addForeignKey('fk_message_source_message', '{{%message}}', 'id', '{{%source_message}}', 'id', 'CASCADE', $onUpdateConstraint);
$this->createIndex('idx_source_message_category', '{{%source_message}}', 'category');
$this->createIndex('idx_message_language', '{{%message}}', 'language');
}
public function down()
{
$this->dropForeignKey('fk_message_source_message', '{{%message}}');
$this->dropTable('{{%message}}');
$this->dropTable('{{%source_message}}');
}
}