addColumn('point_sale', 'status', Schema::TYPE_SMALLINT . ' NOT NULL DEFAULT 1'); } /** * {@inheritdoc} */ public function safeDown() { $this->dropColumn('point_sale', 'status'); } }