| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function up(Schema $schema): void |
||
| 19 | { |
||
| 20 | $table = $schema->createTable('usage_timeline'); |
||
| 21 | $table->addColumn('id', 'integer', ['autoincrement' => true]); |
||
| 22 | $table->addColumn('date', 'date'); |
||
| 23 | $table->addColumn('tool', 'string'); |
||
| 24 | $table->addColumn('count', 'integer'); |
||
| 25 | $table->setPrimaryKey(['id']); |
||
| 26 | } |
||
| 36 |