Addressing comment by IAlex. Setting svn:eol-style to native and removing ?> from...
[lhc/web/wiklou.git] / maintenance / ibm_db2 / patch-change_tag.sql
1 -- A table to track tags for revisions, logs and recent changes.
2 CREATE TABLE change_tag (
3 ct_rc_id INTEGER,
4 ct_log_id INTEGER,
5 ct_rev_id INTEGER,
6 ct_tag varchar(255) NOT NULL,
7 ct_params CLOB(64K) INLINE LENGTH 4096
8 );