数据库安装文件增加file例子字段

This commit is contained in:
2023-04-11 18:18:42 +08:00
parent 550990c994
commit d1e2a11d70
2 changed files with 8 additions and 6 deletions

View File

@@ -15,8 +15,8 @@ use think\facade\View;
class Migrate extends Command
{
protected $table;
protected $database;
protected $tablePrefix;
protected function configure()
@@ -171,7 +171,7 @@ class Migrate extends Command
} else {
$table_keys[] = $column['Field'];
}
} else if ($key == 'UNI') {
} elseif ($key == 'UNI') {
$table_keys_uni[] = $column['Field'];
}
}
@@ -196,11 +196,11 @@ class Migrate extends Command
foreach ($column_item_set['options'] as $key => $option) {
if(is_array($option)){
if(is_array($option)) {
$column_item_set['options'][$key] = "[".implode(',',$option)."]";
}else{
$column_item_set['options'][$key] = "[".implode(',', $option)."]";
} else {
$column_item_set['options'][$key] = "'{$option}'";
}
}

View File

@@ -49,6 +49,8 @@ class MallGoods extends Migrator
->addColumn(Column::integer('create_time')->setLimit(11)->setUnsigned()->setDefault(0)->setComment('创建时间'))
->addColumn(Column::integer('update_time')->setLimit(11)->setUnsigned()->setDefault(0))
->addColumn(Column::integer('delete_time')->setLimit(11)->setUnsigned()->setDefault(0))
->addColumn('license', 'string', ['limit' => '100', 'null' => '0', 'comment' => '授权文件 {file}', ])
->addColumn('license_name', 'string', ['limit' => '100', 'null' => '0', 'comment' => '授权文件名称', ])
->addIndex('cate_id')
->addIndex('delete_time')
->create();