createTable('note', [ 'id' => $this->primaryKey(), 'name' => $this->string()->notNull(), 'description' => $this->text(), 'created_at' => $this->dateTime(), 'updated_at' => $this->dateTime(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('note'); } }