Last active
August 29, 2015 14:20
-
-
Save jeffjirsa/78264e05597b0c03fe7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TYPE form_option ( | |
left int, | |
operator text, | |
right int, | |
); | |
CREATE TABLE forms ( | |
page_id int, | |
form_id int, | |
form_option_id timeuuid, | |
option_data form_option, | |
PRIMARY KEY (page_id, form_id, form_option_id) | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment