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的更多相关文章
随机推荐
- Redis集群方案<转>
为什么集群? 通常,为了提高网站响应速度,总是把热点数据保存在内存中而不是直接从后端数据库中读取.Redis是一个很好的Cache工具.大型网站应用,热点数据量往往巨大,几十G上百G是很正常的事儿,在 ...
- Jackson学习笔记(三)<转>
概述 使用jackson annotations简化和增强的json解析与生成. Jackson-2.x通用annotations列表:https://github.com/FasterXML/jac ...
- Android——浅谈HTTP中Get与Post的区别(转)
原文地址:http://network.51cto.com/art/201407/446434.htm Http定义了与服务器交互的不同方法,最基本的方法有4种,分别是GET,POST,PUT,DEL ...
- linux 网络安全不完全笔记
一.安装Centos二.Linux网络网络环境设置 a.配置linux与客户机相连通 b.配置linux上网三.Yum详解 yum 的基本操作 a.使用 yum 安装新软件 yum install – ...
- 微信小程序——计算2点之间的距离
关于计算2点之间的距离都依赖了腾讯地图,所以请先在腾讯地图官网申请key.具体流程看下图: 下面具体讲计算2点之间距离的方法. 方法一: 1.通过 wx.getLocation(Object obje ...
- mysql执行带外键的sql文件时出现mysql ERROR 1215 (HY000): Cannot add foreign key constraint的解决
ERROR 1215 (HY000): Cannot add foreign key constraint 最近在建表时遇到了这个错误,然后找了下找到了解决办法,记录下: 本来是要建两张表: 1 2 ...
- e866. 确定可用外观
UIManager.LookAndFeelInfo[] info = UIManager.getInstalledLookAndFeels(); for (int i=0; i<info.len ...
- autofac解析Mvc和Webapi的坑
我们在项目中很早就开始使用autofac,也以为知道与mvc和webapi集成的做法. var builder = new ContainerBuilder(); // Mvc Register bu ...
- c、c++---linux上的GetTickCount函数
http://blog.csdn.net/guang11cheng/article/details/6865992 http://wenda.so.com/q/1378766306062794
- CentOS7使用firewalld打开关闭防火墙与端口[转]
转自:http://www.cnblogs.com/moxiaoan/p/5683743.html1.firewalld的基本使用启动: systemctl start firewalld查看状态: ...