Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function safeUp() |
||
8 | { |
||
9 | $this->createTable('{{closing}}', [ |
||
10 | 'table_name'=>$this->string(128)->notNull()->comment('referred entity table name'), |
||
11 | 'last_closing_time'=>$this->dateTime(6)->notNull()->comment('Last closure time in that entity'), |
||
12 | ]); |
||
13 | $this->addPrimaryKey('pk_closing', '{{closing}}', 'table_name'); |
||
14 | } |
||
22 |