mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
8 lines
238 B
SQL
8 lines
238 B
SQL
CREATE TABLE caps_features (
|
|
node text NOT NULL,
|
|
subnode text NOT NULL,
|
|
feature text,
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE INDEX i_caps_features_node_subnode ON caps_features (node, subnode);
|