mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
Pubsub creation/modification use varchar (#2397)
This commit is contained in:
parent
ad6fcc7865
commit
61dee97738
7 changed files with 14 additions and 14 deletions
|
@ -254,8 +254,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 USING btree (itemid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue