personal_area_php/console/migrations/m240110_152351_create_company_table.php
2024-04-24 18:02:58 +03:00

34 lines
753 B
PHP

<?php
use yii\db\Migration;
/**
* Handles the creation of table `{{%company}}`.
*/
class m240110_152351_create_company_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->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}}');
}
}