createTable('{{%company}}', [ 'id' => $this->primaryKey(), 'inn' => $this->string(255)->notNull(), 'name' => $this->string(255)->notNull(), 'address' => $this->string(255), 'created_at' => $this->dateTime(), 'updated_at' => $this->dateTime(), 'status' => $this->integer(1)->defaultValue(1) ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%company}}'); } }