aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorEvgeny Khramtsov <xramtsov@gmail.com>2015-05-20 13:57:44 +0300
committerEvgeny Khramtsov <xramtsov@gmail.com>2015-05-20 13:57:44 +0300
commit05011e6918e3227839681ac464c29620c8221bea (patch)
treeffc2904b8e51e4d0d7cf10661cac0a7933d3aa16 /sql
parentMerge pull request #570 from sezuan/fix_added_sm_table_to_pg (diff)
Revert "added sm table to pg.sql"
Diffstat (limited to 'sql')
-rw-r--r--sql/pg.sql15
1 files changed, 0 insertions, 15 deletions
diff --git a/sql/pg.sql b/sql/pg.sql
index 966614f48..8412c3c6b 100644
--- a/sql/pg.sql
+++ b/sql/pg.sql
@@ -288,18 +288,3 @@ CREATE TABLE caps_features (
);
CREATE INDEX i_caps_features_node_subnode ON caps_features USING btree (node, subnode);
-
-CREATE TABLE sm (
- usec bigint NOT NULL,
- pid text NOT NULL,
- node text NOT NULL,
- username text NOT NULL,
- resource text NOT NULL,
- priority text NOT NULL,
- info text NOT NULL
-);
-
-CREATE UNIQUE INDEX i_sid ON sm USING btree (usec, pid);
-CREATE INDEX i_node ON sm USING btree (node);
-CREATE INDEX i_username ON sm USING btree (username);
-