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