aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_postgres.sql
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-03-07 15:39:14 -0800
committerzotlabs <mike@macgirvin.com>2018-03-07 15:39:14 -0800
commita454aad124f999e59e8bffb625c103b975aef107 (patch)
tree175ca8a9feffee0944de0784e093154291438e82 /install/schema_postgres.sql
parentf0f58dade886d88fc178b78c04e1a4067ddfda04 (diff)
downloadvolse-hubzilla-a454aad124f999e59e8bffb625c103b975aef107.tar.gz
volse-hubzilla-a454aad124f999e59e8bffb625c103b975aef107.tar.bz2
volse-hubzilla-a454aad124f999e59e8bffb625c103b975aef107.zip
federated polls: GNU-Social requires us to preserve the original order of the poll answers for use in making a vote, unlike diaspora (which selects by guid) and activitypub (which selects by non-localisable text).
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r--install/schema_postgres.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index d8bbd89f4..a4f6e9253 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -963,11 +963,13 @@ CREATE TABLE "poll_elm" (
"pelm_desc" text NOT NULL,
"pelm_flags" bigint NOT NULL DEFAULT '0',
"pelm_result" float NOT NULL DEFAULT '0',
+ "pelm_order" numeric(6) NOT NULL DEFAULT '0',
PRIMARY KEY ("pelm_id")
);
create index "pelm_guid" on poll_elm ("pelm_guid");
create index "pelm_poll" on poll_elm ("pelm_poll");
create index "pelm_result" on poll_elm ("pelm_result");
+create index "pelm_order" on poll_elm ("pelm_order");
CREATE TABLE "profdef" (
"id" serial NOT NULL,