|
@@ -32,7 +32,7 @@ class Synscheme extends Migrator
|
|
|
$table = $this->table('synscheme', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
|
|
|
$table->addColumn('hole', 'string', ['limit' => 11,'null' => true,'signed' => true,'comment' => '孔',])
|
|
|
->addColumn('step', 'string', ['limit' => 11,'null' => true,'signed' => true,'comment' => '步骤',])
|
|
|
- ->addColumn('data', 'string', ['limit' => 500,'null' => true,'signed' => true,'comment' => '同步数据 json',])
|
|
|
+ ->addColumn('data', 'longText', ['limit' => 2000,'null' => true,'signed' => true,'comment' => '同步数据 json',])
|
|
|
->addColumn('creator_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建人ID',])
|
|
|
->addColumn('created_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建时间',])
|
|
|
->addColumn('updated_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '更新时间',])
|