Skip to content

Instantly share code, notes, and snippets.

@SpringMT
Created January 27, 2016 13:09
Show Gist options
  • Save SpringMT/4cde52dbf4109cb8422a to your computer and use it in GitHub Desktop.
Save SpringMT/4cde52dbf4109cb8422a to your computer and use it in GitHub Desktop.
create_table "foo", id: :bigint, unsigned: true do |t|
t.integer "test_id", limit: 8, null: false, unsigned: true
t.string "name", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "foo", ["name"], unique: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment