db->driverName === 'mysql') { $tableOptions = 'CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE=InnoDB'; } $this->createTable('{{%carousel}}', [ 'id' => $this->primaryKey(), 'key' => $this->string(128)->notNull(), 'title' => $this->string(255)->notNull(), 'status' => $this->smallInteger()->defaultValue(0) ], $tableOptions); $this->createTable('{{%carousel_item}}', [ 'id' => $this->primaryKey(), 'carousel_id' => $this->integer()->notNull(), 'url' => $this->string(1024), 'caption' => $this->string(1024), 'image' => $this->string(255), 'status' => $this->smallInteger()->notNull()->defaultValue(0), 'sort' => $this->integer()->defaultValue(0), 'created_at' => $this->integer(), 'updated_at' => $this->integer(), ], $tableOptions); } public function safeDown() { $this->dropTable('{{%carousel_item}}'); $this->dropTable('{{%carousel}}'); } }