Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2751052
create-table--ajaxpoll_vote.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
583 B
Referenced Files
None
Subscribers
None
create-table--ajaxpoll_vote.sql
View Options
DROP
SEQUENCE
IF
EXISTS
ajaxpoll_vote_poll_vote_id_seq
CASCADE
;
CREATE
SEQUENCE
ajaxpoll_vote_poll_vote_id_seq
;
CREATE
TABLE
IF
NOT
EXISTS
ajaxpoll_vote
(
poll_vote_id
INTEGER
NOT
NULL
PRIMARY
KEY
DEFAULT
nextval
(
'ajaxpoll_vote_poll_vote_id_seq'
),
poll_id
TEXT
NOT
NULL
default
''
,
poll_actor
INTEGER
NOT
NULL
,
poll_ip
TEXT
default
NULL
,
poll_answer
SMALLINT
default
NULL
,
poll_date
TIMESTAMPTZ
default
NULL
);
ALTER
SEQUENCE
ajaxpoll_vote_poll_vote_id_seq
OWNED
BY
ajaxpoll_vote
.
poll_vote_id
;
CREATE
UNIQUE
INDEX
poll_id_actor
ON
ajaxpoll_vote
(
poll_id
,
poll_actor
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jul 3, 17:46 (23 h, 2 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b6/df/cddf6a946226fe514f360e7f032c
Default Alt Text
create-table--ajaxpoll_vote.sql (583 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment