createTable('notifications', [ 'id' => $this->primaryKey(), 'message' => $this->string(), 'payload' => $this->text(), 'tm_create' => $this->dateTime(), 'tm_send' => $this->dateTime() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('notifications'); } }