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.
43 lines
1.8 KiB
43 lines
1.8 KiB
<?php |
|
|
|
use yii\db\Migration; |
|
|
|
/** |
|
* Handles the creation of table `post_comments`. |
|
*/ |
|
class m180110_140332_create_post_comments_table extends Migration |
|
{ |
|
public function up() |
|
{ |
|
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB'; |
|
|
|
$this->createTable('{{%post_comments}}', [ |
|
'id' => $this->primaryKey(), |
|
'post_id' => $this->integer()->notNull(), |
|
'user_id' => $this->integer()->notNull(), |
|
'parent_id' => $this->integer(), |
|
'created_at' => $this->integer()->unsigned()->notNull(), |
|
'text' => $this->text()->notNull(), |
|
'active' => $this->boolean()->notNull(), |
|
], $tableOptions); |
|
|
|
$this->createIndex('{{%idx-post_comments-post_id}}', '{{%post_comments}}', 'post_id'); |
|
$this->createIndex('{{%idx-post_comments-user_id}}', '{{%post_comments}}', 'user_id'); |
|
$this->createIndex('{{%idx-post_comments-parent_id}}', '{{%post_comments}}', 'parent_id'); |
|
|
|
$this->addForeignKey('{{%fk-post_comments-post_id}}', '{{%post_comments}}', 'post_id', '{{%posts}}', 'id', 'CASCADE'); |
|
$this->addForeignKey('{{%fk-post_comments-user_id}}', '{{%post_comments}}', 'user_id', '{{%users}}', 'id', 'CASCADE'); |
|
$this->addForeignKey('{{%fk-post_comments-parent_id}}', '{{%post_comments}}', 'parent_id', '{{%post_comments}}', 'id', 'CASCADE'); |
|
} |
|
|
|
public function down() |
|
{ |
|
$this->dropForeignKey('{{%fk-post_comments-parent_id}}', '{{%post_comments}}'); |
|
$this->dropForeignKey('{{%fk-post_comments-user_id}}', '{{%post_comments}}'); |
|
$this->dropForeignKey('{{%fk-post_comments-post_id}}', '{{%post_comments}}'); |
|
$this->dropIndex('{{%idx-post_comments-parent_id}}', '{{%post_comments}}'); |
|
$this->dropIndex('{{%idx-post_comments-user_id}}', '{{%post_comments}}'); |
|
$this->dropIndex('{{%idx-post_comments-post_id}}', '{{%post_comments}}'); |
|
$this->dropTable('{{%post_comments}}'); |
|
} |
|
}
|
|
|