Addressing comment by IAlex. Setting svn:eol-style to native and removing ?> from...
[lhc/web/wiklou.git] / maintenance / ibm_db2 / patch-log_search.sql
1 CREATE TABLE log_search (
2 -- The type of ID (rev ID, log ID, rev TIMESTAMP(3), username)
3 ls_field VARCHAR(32) FOR BIT DATA NOT NULL,
4 -- The value of the ID
5 ls_value varchar(255) NOT NULL,
6 -- Key to log_id
7 ls_log_id BIGINT NOT NULL default 0
8 );