repo_folder
-- Create table
create table REPO_FOLDER
(
UUID VARCHAR2(50) not null,
VALID VARCHAR2(2) not null,
CREATE_TIME TIMESTAMP(6) not null,
CREATOR VARCHAR2(50) not null,
REMARK VARCHAR2(500),
MODIFY_TIME TIMESTAMP(6) not null,
MODIFIER VARCHAR2(50) not null
)
;
-- Add comments to the columns
comment on column REPO_FOLDER.UUID
is '文件夹ID';
comment on column REPO_FOLDER.VALID
is 'YES:有效,NO:无效;参照枚举类EnumYesNo';
comment on column REPO_FOLDER.CREATE_TIME
is '创建时间';
comment on column REPO_FOLDER.CREATOR
is '创建者';
comment on column REPO_FOLDER.REMARK
is '备注';
comment on column REPO_FOLDER.MODIFY_TIME
is '最后修改时间';
comment on column REPO_FOLDER.MODIFIER
is '修改人';
-- Create/Recreate primary, unique and foreign key constraints
alter table REPO_FOLDER
add constraint REPO_FOLDER_ID_KEY primary key (UUID)
;
repo_folder的更多相关文章
随机推荐
- nginx负载均衡和反相代理的配置
偷懒,参考这里 https://www.cnblogs.com/taiyonghai/p/6728707.html
- git实践:对比svn
先前只用过svn,自然也没有去对比什么好坏,亲自上手之后发现svn和git实在是有很多不同 svn优点: 学习成本对比非常低 服务器公司统一控制管理 安全机制, 不会每个人都拷贝一份, 可以对组员限制 ...
- SpringBoot 集成 Mybatis 使用 Druid数据源 MySQL数据库
思路: 1.创建项目 项目结构如下: 2.导入相应包 POM.xml文件如下: <?xml version="1.0" encoding="UTF-8"? ...
- atmega328 熔丝
http://www.geek-workshop.com/thread-5772-1-1.html AVR_fighter http://wenku.baidu.com/view/0c0a8ccc61 ...
- MySQL递归查询树状表的子节点、父节点
表结构和表数据就不公示了,查询的表user_role,主键是id,每条记录有parentid字段; 如下mysql查询函数即可实现根据一个节点查询所有的子节点,根据一个子节点查询所有的父节点.对于数据 ...
- [kafka] 003_kafka_主要配置
1.broker配置 2.Producer主要配置 3.Consumer主要配置 出错提示信息: replication factor: 1 larger than available brokers ...
- 启动另一个app
(一) 通过包名.类名 开发有时需要在一个应用中启动另一个应用,比如Launcher加载所有的已安装的程序的列表,当点击图标时可以启动另一个应用.一般我们知道了另一个应用的包名和MainActivit ...
- ubuntu 挂载硬盘
https://cndaqiang.github.io/2017/10/11/ubuntu-disk/ 查看硬盘 查看方法一 查看/dev下面的设备文件 ll -h /dev/sd* 通过sudo f ...
- struts2系列(一):struts2入门(struts2的产生、struts2的工作流程、搭建struts2开发环境)
一. struts2的产生 struts1的缺点: 1. ActionForm过多,而且这个ActionForm在很大程度上又和VO(POJO)重复 ...
- e775. 设置JList组件项的维数
By default, the width of the list is determined by the longest item and the height is determined by ...