fixed cad area and added dfx
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Phinx\Migration\AbstractMigration;
|
||||
|
||||
final class AddDxfToCadAreaJobs extends AbstractMigration
|
||||
{
|
||||
public function change(): void
|
||||
{
|
||||
$this->table('cad_area_jobs')
|
||||
->addColumn('dxf_filename', 'string', [
|
||||
'limit' => 255,
|
||||
'null' => true,
|
||||
'default' => null,
|
||||
'after' => 'manual_holes_json'
|
||||
])
|
||||
->addColumn('dxf_url', 'string', [
|
||||
'limit' => 500,
|
||||
'null' => true,
|
||||
'default' => null,
|
||||
'after' => 'dxf_filename'
|
||||
])
|
||||
->update();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user