Skip to content

Instantly share code, notes, and snippets.

@heathd
Created February 5, 2015 23:34
Show Gist options
  • Save heathd/b8688d2a280823432541 to your computer and use it in GitHub Desktop.
Save heathd/b8688d2a280823432541 to your computer and use it in GitHub Desktop.
Attempt to reproduce globalize issue (PR#330)
ActiveRecord::Migration.verbose = false
ActiveRecord::Schema.define do
create_table :products, :force => true do |t|
t.timestamps
end
create_table :product_translations, :force => true do |t|
t.string :locale
t.references :product
t.string :name
t.timestamps
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment