forked from gehuangyi20/Koinonia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecliptic.sql
1213 lines (844 loc) · 27.2 KB
/
ecliptic.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.3
-- Dumped by pg_dump version 9.6.3
-- Started on 2017-08-18 18:14:15 EDT
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- TOC entry 2287 (class 1262 OID 75234)
-- Name: ecliptic; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE ecliptic WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8';
ALTER DATABASE ecliptic OWNER TO postgres;
\connect ecliptic
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- TOC entry 6 (class 2615 OID 75235)
-- Name: auth; Type: SCHEMA; Schema: -; Owner: postgres
--
CREATE SCHEMA auth;
ALTER SCHEMA auth OWNER TO postgres;
--
-- TOC entry 7 (class 2615 OID 108241)
-- Name: esp; Type: SCHEMA; Schema: -; Owner: postgres
--
CREATE SCHEMA esp;
ALTER SCHEMA esp OWNER TO postgres;
--
-- TOC entry 4 (class 2615 OID 125091)
-- Name: teller; Type: SCHEMA; Schema: -; Owner: postgres
--
CREATE SCHEMA teller;
ALTER SCHEMA teller OWNER TO postgres;
--
-- TOC entry 11 (class 2615 OID 125050)
-- Name: teller2; Type: SCHEMA; Schema: -; Owner: postgres
--
CREATE SCHEMA teller2;
ALTER SCHEMA teller2 OWNER TO postgres;
--
-- TOC entry 12 (class 2615 OID 125070)
-- Name: teller3; Type: SCHEMA; Schema: -; Owner: postgres
--
CREATE SCHEMA teller3;
ALTER SCHEMA teller3 OWNER TO postgres;
--
-- TOC entry 1 (class 3079 OID 12433)
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- TOC entry 2289 (class 0 OID 0)
-- Dependencies: 1
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = auth, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 190 (class 1259 OID 75239)
-- Name: candidate; Type: TABLE; Schema: auth; Owner: postgres
--
CREATE TABLE candidate (
eid integer NOT NULL,
cid integer NOT NULL,
name character varying(255),
create_time timestamp without time zone DEFAULT now(),
update_time timestamp without time zone DEFAULT now()
);
ALTER TABLE candidate OWNER TO postgres;
--
-- TOC entry 2290 (class 0 OID 0)
-- Dependencies: 190
-- Name: COLUMN candidate.eid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN candidate.eid IS 'election id';
--
-- TOC entry 2291 (class 0 OID 0)
-- Dependencies: 190
-- Name: COLUMN candidate.cid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN candidate.cid IS 'candidate id for current election';
--
-- TOC entry 2292 (class 0 OID 0)
-- Dependencies: 190
-- Name: COLUMN candidate.name; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN candidate.name IS 'candidate name';
--
-- TOC entry 191 (class 1259 OID 75244)
-- Name: elec_position; Type: TABLE; Schema: auth; Owner: postgres
--
CREATE TABLE elec_position (
eid integer NOT NULL,
pid integer NOT NULL,
name character varying(255),
create_time timestamp without time zone DEFAULT now(),
update_time timestamp without time zone DEFAULT now()
);
ALTER TABLE elec_position OWNER TO postgres;
--
-- TOC entry 2293 (class 0 OID 0)
-- Dependencies: 191
-- Name: COLUMN elec_position.eid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN elec_position.eid IS 'election id';
--
-- TOC entry 2294 (class 0 OID 0)
-- Dependencies: 191
-- Name: COLUMN elec_position.pid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN elec_position.pid IS 'election position id';
--
-- TOC entry 2295 (class 0 OID 0)
-- Dependencies: 191
-- Name: COLUMN elec_position.name; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN elec_position.name IS 'position name';
--
-- TOC entry 194 (class 1259 OID 124971)
-- Name: election; Type: TABLE; Schema: auth; Owner: postgres
--
CREATE TABLE election (
id integer NOT NULL,
name character varying(255),
state integer,
create_time timestamp without time zone DEFAULT now(),
update_time timestamp without time zone DEFAULT now(),
is_verified boolean DEFAULT false NOT NULL,
verify_result boolean DEFAULT false NOT NULL,
tunnel_port integer,
esp_pub_key character varying,
freeze_time timestamp without time zone,
freeze_sign character varying,
voter_count integer DEFAULT 0,
is_voter_sign boolean DEFAULT false NOT NULL,
voter_sign character varying,
is_teller_sign boolean DEFAULT false NOT NULL,
teller_sign character varying,
open_time timestamp without time zone,
open_sign character varying,
close_time timestamp without time zone,
close_sign character varying
);
ALTER TABLE election OWNER TO postgres;
--
-- TOC entry 2296 (class 0 OID 0)
-- Dependencies: 194
-- Name: COLUMN election.id; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN election.id IS 'election id';
--
-- TOC entry 2297 (class 0 OID 0)
-- Dependencies: 194
-- Name: COLUMN election.name; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN election.name IS 'election name';
--
-- TOC entry 2298 (class 0 OID 0)
-- Dependencies: 194
-- Name: COLUMN election.state; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN election.state IS 'current state (0-4)';
--
-- TOC entry 2299 (class 0 OID 0)
-- Dependencies: 194
-- Name: COLUMN election.create_time; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN election.create_time IS 'creation timestamp';
--
-- TOC entry 2300 (class 0 OID 0)
-- Dependencies: 194
-- Name: COLUMN election.update_time; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN election.update_time IS 'last update timestamp';
--
-- TOC entry 2301 (class 0 OID 0)
-- Dependencies: 194
-- Name: COLUMN election.tunnel_port; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN election.tunnel_port IS 'a port on authority for tunnelling';
--
-- TOC entry 192 (class 1259 OID 75261)
-- Name: position_candidate_map; Type: TABLE; Schema: auth; Owner: postgres
--
CREATE TABLE position_candidate_map (
eid integer NOT NULL,
pid integer NOT NULL,
cid integer NOT NULL
);
ALTER TABLE position_candidate_map OWNER TO postgres;
--
-- TOC entry 2302 (class 0 OID 0)
-- Dependencies: 192
-- Name: COLUMN position_candidate_map.eid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN position_candidate_map.eid IS 'election id';
--
-- TOC entry 2303 (class 0 OID 0)
-- Dependencies: 192
-- Name: COLUMN position_candidate_map.pid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN position_candidate_map.pid IS 'position id';
--
-- TOC entry 2304 (class 0 OID 0)
-- Dependencies: 192
-- Name: COLUMN position_candidate_map.cid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN position_candidate_map.cid IS 'candidate id';
--
-- TOC entry 196 (class 1259 OID 125015)
-- Name: teller; Type: TABLE; Schema: auth; Owner: postgres
--
CREATE TABLE teller (
eid integer NOT NULL,
hostname character varying(255) NOT NULL,
port integer NOT NULL,
protocol character varying(5),
tunnel_port integer,
pub_key character varying,
reg_time timestamp without time zone DEFAULT now(),
count jsonb,
count_time timestamp without time zone,
count_sign character varying
);
ALTER TABLE teller OWNER TO postgres;
--
-- TOC entry 2305 (class 0 OID 0)
-- Dependencies: 196
-- Name: COLUMN teller.eid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN teller.eid IS 'election id';
--
-- TOC entry 2306 (class 0 OID 0)
-- Dependencies: 196
-- Name: COLUMN teller.hostname; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN teller.hostname IS 'teller server domain';
--
-- TOC entry 2307 (class 0 OID 0)
-- Dependencies: 196
-- Name: COLUMN teller.tunnel_port; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN teller.tunnel_port IS 'a port on each teller for tunnelling';
--
-- TOC entry 2308 (class 0 OID 0)
-- Dependencies: 196
-- Name: COLUMN teller.pub_key; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN teller.pub_key IS 'teller public key';
--
-- TOC entry 2309 (class 0 OID 0)
-- Dependencies: 196
-- Name: COLUMN teller.reg_time; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN teller.reg_time IS 'teller registration timestamp';
--
-- TOC entry 195 (class 1259 OID 125005)
-- Name: voter; Type: TABLE; Schema: auth; Owner: postgres
--
CREATE TABLE voter (
eid integer NOT NULL,
identifier character varying(255) NOT NULL,
rid character varying,
reg_time timestamp without time zone,
link_time timestamp without time zone,
link_sign character varying
);
ALTER TABLE voter OWNER TO postgres;
--
-- TOC entry 2310 (class 0 OID 0)
-- Dependencies: 195
-- Name: COLUMN voter.eid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN voter.eid IS 'election id';
--
-- TOC entry 2311 (class 0 OID 0)
-- Dependencies: 195
-- Name: COLUMN voter.identifier; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN voter.identifier IS 'voter identifier, use email right now';
--
-- TOC entry 2312 (class 0 OID 0)
-- Dependencies: 195
-- Name: COLUMN voter.rid; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN voter.rid IS 'random voting id';
--
-- TOC entry 2313 (class 0 OID 0)
-- Dependencies: 195
-- Name: COLUMN voter.reg_time; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN voter.reg_time IS 'registration time';
--
-- TOC entry 2314 (class 0 OID 0)
-- Dependencies: 195
-- Name: COLUMN voter.link_time; Type: COMMENT; Schema: auth; Owner: postgres
--
COMMENT ON COLUMN voter.link_time IS 'actual voting time stamp';
SET search_path = esp, pg_catalog;
--
-- TOC entry 198 (class 1259 OID 125027)
-- Name: election; Type: TABLE; Schema: esp; Owner: postgres
--
CREATE TABLE election (
id integer NOT NULL,
auth_hostname character varying,
auth_protocol character varying,
auth_port integer,
tunnel_port integer,
state integer,
election_data jsonb,
auth_pub_key character varying,
summation jsonb
);
ALTER TABLE election OWNER TO postgres;
--
-- TOC entry 2315 (class 0 OID 0)
-- Dependencies: 198
-- Name: COLUMN election.state; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN election.state IS 'current state (0-3)';
--
-- TOC entry 197 (class 1259 OID 125025)
-- Name: election_id_seq; Type: SEQUENCE; Schema: esp; Owner: postgres
--
CREATE SEQUENCE election_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE election_id_seq OWNER TO postgres;
--
-- TOC entry 2316 (class 0 OID 0)
-- Dependencies: 197
-- Name: election_id_seq; Type: SEQUENCE OWNED BY; Schema: esp; Owner: postgres
--
ALTER SEQUENCE election_id_seq OWNED BY election.id;
--
-- TOC entry 193 (class 1259 OID 116654)
-- Name: votes; Type: TABLE; Schema: esp; Owner: postgres
--
CREATE TABLE votes (
eid integer NOT NULL,
rid character varying NOT NULL,
email character varying NOT NULL,
reg_time timestamp without time zone NOT NULL,
link_time timestamp without time zone NOT NULL,
link_sign character varying NOT NULL,
data jsonb,
vote_time timestamp without time zone DEFAULT now(),
vote_sign character varying NOT NULL
);
ALTER TABLE votes OWNER TO postgres;
--
-- TOC entry 2317 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.eid; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.eid IS 'election id';
--
-- TOC entry 2318 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.rid; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.rid IS 'voter id';
--
-- TOC entry 2319 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.email; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.email IS 'voter email';
--
-- TOC entry 2320 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.reg_time; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.reg_time IS 'voter reg time';
--
-- TOC entry 2321 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.link_time; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.link_time IS 'voter id';
--
-- TOC entry 2322 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.link_sign; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.link_sign IS 'voter link sign';
--
-- TOC entry 2323 (class 0 OID 0)
-- Dependencies: 193
-- Name: COLUMN votes.vote_time; Type: COMMENT; Schema: esp; Owner: postgres
--
COMMENT ON COLUMN votes.vote_time IS 'vote time stamp';
SET search_path = teller, pg_catalog;
--
-- TOC entry 203 (class 1259 OID 125092)
-- Name: election; Type: TABLE; Schema: teller; Owner: postgres
--
CREATE TABLE election (
id integer NOT NULL,
election_data jsonb,
esp_pub_key character varying,
auth_pub_key character varying,
esp_url jsonb,
auth_url jsonb,
reg_time timestamp without time zone DEFAULT now() NOT NULL,
count jsonb,
count_time timestamp without time zone,
count_sign character varying
);
ALTER TABLE election OWNER TO postgres;
--
-- TOC entry 2324 (class 0 OID 0)
-- Dependencies: 203
-- Name: COLUMN election.id; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN election.id IS 'election id';
--
-- TOC entry 2325 (class 0 OID 0)
-- Dependencies: 203
-- Name: COLUMN election.election_data; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN election.election_data IS 'election data';
--
-- TOC entry 2326 (class 0 OID 0)
-- Dependencies: 203
-- Name: COLUMN election.esp_pub_key; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN election.esp_pub_key IS 'public key';
--
-- TOC entry 2327 (class 0 OID 0)
-- Dependencies: 203
-- Name: COLUMN election.reg_time; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN election.reg_time IS 'teller server registration time for current election';
--
-- TOC entry 204 (class 1259 OID 125101)
-- Name: votes; Type: TABLE; Schema: teller; Owner: postgres
--
CREATE TABLE votes (
eid integer NOT NULL,
rid character varying NOT NULL,
email character varying NOT NULL,
reg_time timestamp without time zone NOT NULL,
link_time timestamp without time zone NOT NULL,
link_sign character varying NOT NULL,
data bytea,
vote_time timestamp without time zone DEFAULT now(),
vote_sign character varying NOT NULL,
receipt_time timestamp without time zone,
receipt_sign character varying,
is_sum boolean DEFAULT false
);
ALTER TABLE votes OWNER TO postgres;
--
-- TOC entry 2328 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.eid; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.eid IS 'election id';
--
-- TOC entry 2329 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.rid; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.rid IS 'voter id';
--
-- TOC entry 2330 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.email; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.email IS 'voter email';
--
-- TOC entry 2331 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.reg_time; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.reg_time IS 'voter reg time';
--
-- TOC entry 2332 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.link_time; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.link_time IS 'voter id';
--
-- TOC entry 2333 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.link_sign; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.link_sign IS 'voter link sign';
--
-- TOC entry 2334 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.data; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.data IS '[{x:x_i1, y: y_i1, z: z_i1}, ...]';
--
-- TOC entry 2335 (class 0 OID 0)
-- Dependencies: 204
-- Name: COLUMN votes.vote_time; Type: COMMENT; Schema: teller; Owner: postgres
--
COMMENT ON COLUMN votes.vote_time IS 'vote time stamp';
SET search_path = teller2, pg_catalog;
--
-- TOC entry 199 (class 1259 OID 125051)
-- Name: election; Type: TABLE; Schema: teller2; Owner: postgres
--
CREATE TABLE election (
id integer NOT NULL,
election_data jsonb,
esp_pub_key character varying,
auth_pub_key character varying,
esp_url jsonb,
auth_url jsonb,
reg_time timestamp without time zone DEFAULT now() NOT NULL,
count jsonb,
count_time timestamp without time zone,
count_sign character varying
);
ALTER TABLE election OWNER TO postgres;
--
-- TOC entry 2336 (class 0 OID 0)
-- Dependencies: 199
-- Name: COLUMN election.id; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN election.id IS 'election id';
--
-- TOC entry 2337 (class 0 OID 0)
-- Dependencies: 199
-- Name: COLUMN election.election_data; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN election.election_data IS 'election data';
--
-- TOC entry 2338 (class 0 OID 0)
-- Dependencies: 199
-- Name: COLUMN election.esp_pub_key; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN election.esp_pub_key IS 'public key';
--
-- TOC entry 2339 (class 0 OID 0)
-- Dependencies: 199
-- Name: COLUMN election.reg_time; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN election.reg_time IS 'teller server registration time for current election';
--
-- TOC entry 200 (class 1259 OID 125060)
-- Name: votes; Type: TABLE; Schema: teller2; Owner: postgres
--
CREATE TABLE votes (
eid integer NOT NULL,
rid character varying NOT NULL,
email character varying NOT NULL,
reg_time timestamp without time zone NOT NULL,
link_time timestamp without time zone NOT NULL,
link_sign character varying NOT NULL,
data bytea,
vote_time timestamp without time zone DEFAULT now(),
vote_sign character varying NOT NULL,
receipt_time timestamp without time zone,
receipt_sign character varying,
is_sum boolean DEFAULT false
);
ALTER TABLE votes OWNER TO postgres;
--
-- TOC entry 2340 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.eid; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.eid IS 'election id';
--
-- TOC entry 2341 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.rid; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.rid IS 'voter id';
--
-- TOC entry 2342 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.email; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.email IS 'voter email';
--
-- TOC entry 2343 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.reg_time; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.reg_time IS 'voter reg time';
--
-- TOC entry 2344 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.link_time; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.link_time IS 'voter id';
--
-- TOC entry 2345 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.link_sign; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.link_sign IS 'voter link sign';
--
-- TOC entry 2346 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.data; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.data IS '[{x:x_i1, y: y_i1, z: z_i1}, ...]';
--
-- TOC entry 2347 (class 0 OID 0)
-- Dependencies: 200
-- Name: COLUMN votes.vote_time; Type: COMMENT; Schema: teller2; Owner: postgres
--
COMMENT ON COLUMN votes.vote_time IS 'vote time stamp';
SET search_path = teller3, pg_catalog;
--
-- TOC entry 201 (class 1259 OID 125071)
-- Name: election; Type: TABLE; Schema: teller3; Owner: postgres
--
CREATE TABLE election (
id integer NOT NULL,
election_data jsonb,
esp_pub_key character varying,
auth_pub_key character varying,
esp_url jsonb,
auth_url jsonb,
reg_time timestamp without time zone DEFAULT now() NOT NULL,
count jsonb,
count_time timestamp without time zone,
count_sign character varying
);
ALTER TABLE election OWNER TO postgres;
--
-- TOC entry 2348 (class 0 OID 0)
-- Dependencies: 201
-- Name: COLUMN election.id; Type: COMMENT; Schema: teller3; Owner: postgres
--
COMMENT ON COLUMN election.id IS 'election id';
--
-- TOC entry 2349 (class 0 OID 0)
-- Dependencies: 201
-- Name: COLUMN election.election_data; Type: COMMENT; Schema: teller3; Owner: postgres
--
COMMENT ON COLUMN election.election_data IS 'election data';
--
-- TOC entry 2350 (class 0 OID 0)
-- Dependencies: 201
-- Name: COLUMN election.esp_pub_key; Type: COMMENT; Schema: teller3; Owner: postgres
--
COMMENT ON COLUMN election.esp_pub_key IS 'public key';
--
-- TOC entry 2351 (class 0 OID 0)
-- Dependencies: 201
-- Name: COLUMN election.reg_time; Type: COMMENT; Schema: teller3; Owner: postgres
--
COMMENT ON COLUMN election.reg_time IS 'teller server registration time for current election';
--
-- TOC entry 202 (class 1259 OID 125080)
-- Name: votes; Type: TABLE; Schema: teller3; Owner: postgres
--
CREATE TABLE votes (
eid integer NOT NULL,
rid character varying NOT NULL,
email character varying NOT NULL,
reg_time timestamp without time zone NOT NULL,
link_time timestamp without time zone NOT NULL,
link_sign character varying NOT NULL,
data bytea,
vote_time timestamp without time zone DEFAULT now(),
vote_sign character varying NOT NULL,
receipt_time timestamp without time zone,
receipt_sign character varying,
is_sum boolean DEFAULT false
);
ALTER TABLE votes OWNER TO postgres;
--
-- TOC entry 2352 (class 0 OID 0)
-- Dependencies: 202
-- Name: COLUMN votes.eid; Type: COMMENT; Schema: teller3; Owner: postgres
--
COMMENT ON COLUMN votes.eid IS 'election id';
--
-- TOC entry 2353 (class 0 OID 0)
-- Dependencies: 202
-- Name: COLUMN votes.rid; Type: COMMENT; Schema: teller3; Owner: postgres
--
COMMENT ON COLUMN votes.rid IS 'voter id';
--
-- TOC entry 2354 (class 0 OID 0)