diff options
Diffstat (limited to 'sql/lite.new.sql')
-rw-r--r-- | sql/lite.new.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/lite.new.sql b/sql/lite.new.sql index ef22fe3d7..b1ff14fd1 100644 --- a/sql/lite.new.sql +++ b/sql/lite.new.sql @@ -259,8 +259,8 @@ CREATE TABLE pubsub_item ( nodeid bigint REFERENCES pubsub_node(nodeid) ON DELETE CASCADE, itemid text NOT NULL, publisher text NOT NULL, - creation text NOT NULL, - modification text NOT NULL, + creation varchar(32) NOT NULL, + modification varchar(32) NOT NULL, payload text NOT NULL DEFAULT '' ); CREATE INDEX i_pubsub_item_itemid ON pubsub_item (itemid); |