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的更多相关文章
随机推荐
- JavaScript JSON 数据处理
在JavaScript 也自带了 JSON 格式的处理 <!doctype html> <html> <script> var test_json_str = { ...
- WinDbg F9时“code not found breakpoint not set”
当使用Windbg 6.2.9200.16384 进行源码调试时,无法在代码文件中F9设置断点,会出现“code not found breakpoint not set”,我们只有启动下我们自己的驱 ...
- webbrowser获取无ID无Name控件并模拟点击
常见的获取控件并点击(自动登录): var txtUserID = wbsTask.Document.All["userName"]; var txtPsd = wbsTask.D ...
- 【C】——extern
直接上例子: 1.c #include<stdio.h> int main() { extern int a; a += ; printf("%d\n",a); tex ...
- windows10删除开始菜单中的xbox、人脉、邮件等应用
1.右键单击PowerShell,选择“以管理员身份运行” 2.输入下面的命令回车,会列出系统中所有已安装应用列表. Get-AppxPackage -AllUsers 从列表中找到你要卸载的应用,并 ...
- 安卓程序代写 网上程序代写[原]BluetoothClass详解
一. BluetoothClass简介 1. 继承关系 public final class BluetoothClass extends Object implements Parcelable 该 ...
- Python 文件操作三
文件重命名os模块中的rename()可以完成对文件的重命名操作rename(需要修改的文件名, 新的文件名) import os os.rename("11.txt", &quo ...
- android sqlite blob
BOLB表示二进制大对象,这种数据类型通过用来保存图片,图象,视频等. 使用场景: http://blog.sina.com.cn/s/blog_8cfbb99201012oqn.html publi ...
- Ubuntu之网易云音乐无法启动
官方最新版(1.1)有这个问题,似乎改成0.9版就可以了 deepin15(32位):http://s1.music.126.net/download/pc/netease-cloud-music_0 ...
- linux下硬盘的分区:
提到硬盘的分区,以前就是很乱,有什么主分区/扩展分区/逻辑分区等;它们有什么区别呢?现在简单的了解一下: 由于在MBR的主引导记录中的分区表里面最多只能记录4个分区记录,这个不够用啊,为了解决这个问题 ...