createTable('{{%news}}', [ 'id' => $this->primaryKey(), 'title' => $this->string(), 'text' => $this->text(), 'slug' => $this->string()->unique() ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%news}}'); } }