34 lines
753 B
PHP
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}}');
|
|
}
|
|
}
|