Skip to content

Instantly share code, notes, and snippets.

@jnwheeler44
Created October 12, 2012 18:36
Show Gist options
  • Save jnwheeler44/3880726 to your computer and use it in GitHub Desktop.
Save jnwheeler44/3880726 to your computer and use it in GitHub Desktop.
Sequel.migration do
change do
create_table :polls do
primary_key :id
string :title
string :author
boolean :active
end
end
end
Sequel.migration do
change do
create_table :poll_options do
primary_key :id
foreign_key :poll_id
string :title
end
end
end
Sequel.migration do
change do
create_table :votes do
primary_key :id
foreign_key :poll_id
foreign_key :poll_option_id
integer :winning_vote_id
string :author
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment