资源池 修改 flyway
This commit is contained in:
parent
a72ba55141
commit
3a383bb546
|
@ -112,8 +112,6 @@ CREATE TABLE IF NOT EXISTS `system_parameter` (
|
|||
|
||||
CREATE TABLE IF NOT EXISTS `test_resource` (
|
||||
`id` varchar(50) NOT NULL COMMENT 'Test resource ID',
|
||||
`test_resource_pool_id` varchar(50) NOT NULL COMMENT 'Test resource pool ID this test resource belongs to',
|
||||
`name` varchar(64) NOT NULL COMMENT 'Test resource name',
|
||||
`description` varchar(255) DEFAULT NULL COMMENT 'Test resource description',
|
||||
`configuration` longtext COMMENT 'Test resource configuration',
|
||||
`status` varchar(64) NOT NULL COMMENT 'Test resource status',
|
||||
|
@ -128,6 +126,7 @@ CREATE TABLE IF NOT EXISTS `test_resource` (
|
|||
CREATE TABLE IF NOT EXISTS `test_resource_pool` (
|
||||
`id` varchar(50) NOT NULL COMMENT 'Test resource pool ID',
|
||||
`name` varchar(64) NOT NULL COMMENT 'Test resource pool name',
|
||||
`type` varchar(30) NOT NULL COMMENT 'Test resource pool type',
|
||||
`description` varchar(255) DEFAULT NULL COMMENT 'Test resource pool description',
|
||||
`status` varchar(64) NOT NULL COMMENT 'Test resource pool status',
|
||||
`create_time` bigint(13) NOT NULL COMMENT 'Create timestamp',
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
@change="changeSwitch(scope.row)"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column>changeSwitch
|
||||
<el-table-column prop="createTime" label="创建时间" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
|
||||
|
|
Loading…
Reference in New Issue