Skip to content

Instantly share code, notes, and snippets.

@jeffjirsa
Last active August 29, 2015 14:20
Show Gist options
  • Save jeffjirsa/78264e05597b0c03fe7f to your computer and use it in GitHub Desktop.
Save jeffjirsa/78264e05597b0c03fe7f to your computer and use it in GitHub Desktop.
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