30 lines
528 B
PHP
30 lines
528 B
PHP
|
<?php
|
||
|
|
||
|
use yii\db\Migration;
|
||
|
|
||
|
/**
|
||
|
* Handles the creation of table `{{%banner}}`.
|
||
|
*/
|
||
|
class m231023_142702_create_banner_table extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function safeUp()
|
||
|
{
|
||
|
$this->createTable('{{%banner}}', [
|
||
|
'id' => $this->primaryKey(),
|
||
|
'photo' => $this->string(),
|
||
|
'rating' => $this->integer(),
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function safeDown()
|
||
|
{
|
||
|
$this->dropTable('{{%banner}}');
|
||
|
}
|
||
|
}
|