| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function up() |
||
| 18 | { |
||
| 19 | $this->createTable($this->tableName, [ |
||
| 20 | 'id' => $this->primaryKey(), |
||
| 21 | 'channel' => $this->string()->notNull(), |
||
| 22 | 'job' => $this->binary()->notNull(), |
||
| 23 | 'created_at' => $this->integer()->notNull(), |
||
| 24 | 'started_at' => $this->integer(), |
||
| 25 | 'finished_at' => $this->integer(), |
||
| 26 | ], $this->tableOptions); |
||
| 27 | |||
| 28 | $this->createIndex('channel', $this->tableName, 'channel'); |
||
| 29 | $this->createIndex('started_at', $this->tableName, 'started_at'); |
||
| 30 | } |
||
| 31 | |||
| 37 |