createTable('notification_results', [ 'id' => $this->primaryKey(), 'notify_id' => $this->integer(), 'user_id' => $this->integer(), 'status' => $this->smallInteger()->defaultValue(0) ]); } /** * @inheritdoc */ public function down() { $this->dropTable('notification_results'); } }