addColumn('quotation', 'is_sent', Schema::TYPE_BOOLEAN); $this->addColumn('delivery_note', 'is_sent', Schema::TYPE_BOOLEAN); $this->addColumn('invoice', 'is_sent', Schema::TYPE_BOOLEAN); } /** * {@inheritdoc} */ public function safeDown() { $this->dropColumn('quotation', 'is_sent'); $this->dropColumn('delivery_note', 'is_sent'); $this->dropColumn('invoice', 'is_sent'); } }