Skip to content

Instantly share code, notes, and snippets.

@favrik
Created December 25, 2014 21:45
Show Gist options
  • Save favrik/a90bfe77720fab71574e to your computer and use it in GitHub Desktop.
Save favrik/a90bfe77720fab71574e to your computer and use it in GitHub Desktop.
create_table "payments", force: true do |t|
t.integer "credit_card_id", default: 0, null: false
t.integer "order_id", default: 0, null: false
t.float "amount", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "authorization", limit: 510
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment