c4f4776a
Anastasia
- package offers
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
use yii\db\Migration;
/**
* Handles the creation of table `package`.
*/
class m180525_140759_create_package_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('package', [
'id' => $this->primaryKey(),
'sort' => $this->integer(),
'status' => $this->boolean(),
'created_at' => $this->integer(),
'updated_at' => $this->integer()
]);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropTable('package');
}
}
|