资源池 修改 flyway

This commit is contained in:
W23123 2020-03-24 16:54:32 +08:00
parent a72ba55141
commit 3a383bb546
2 changed files with 2 additions and 3 deletions

View File

@ -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',

View File

@ -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>