Skip to content

Instantly share code, notes, and snippets.

@1syo
Last active December 6, 2016 08:17
Show Gist options
  • Save 1syo/7a2cf2e19656066285f175ee5fda01cd to your computer and use it in GitHub Desktop.
Save 1syo/7a2cf2e19656066285f175ee5fda01cd to your computer and use it in GitHub Desktop.
create_table "users" do |t|
t.string "name", null: false
end
create_table "itames" do |t|
t.string "name", null: false
t.t.integer "category_id", limit: 4, null: false
t.t.integer "user_id", limit: 4, null: false
end
create_table "categories" do |t|
t.string "name", null: false
end
create_table "available_items" do |t|
t.integer "item_id", limit: 4, null: false
t.t.integer "category_id", limit: 4, null: false
t.t.integer "user_id", limit: 4, null: false
end
add_index "available_items", ["category_id", "user_id"], unique: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment