createTable('subs', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'transaction_id' => $this->bigInteger(), 'original_transaction_id' => $this->bigInteger(), 'tm_purchase' => $this->dateTime(), 'tm_expires' => $this->dateTime() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('subs'); } }