summaryrefslogtreecommitdiff
path: root/maintenance/ibm_db2/patch-change_tag.sql
blob: 3b6f9d5481add3548be836d63777885eeb1e4cfa (plain)
1
2
3
4
5
6
7
8
-- A table to track tags for revisions, logs and recent changes.
CREATE TABLE change_tag (
  ct_rc_id INTEGER,
  ct_log_id INTEGER,
  ct_rev_id INTEGER,
  ct_tag varchar(255) NOT NULL,
  ct_params CLOB(64K) INLINE LENGTH 4096
);