createTable('{{%resume_template}}', [ 'id' => $this->primaryKey(), 'title' => $this->string()->notNull(), 'created_at' => $this->dateTime(), 'updated_at' => $this->dateTime(), 'status' => $this->integer(2)->defaultValue(1), 'template_body' => $this->text(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%resume_template}}'); } }