summaryrefslogtreecommitdiff
path: root/vendor/plugins/globalize2/test/data/no_globalize_schema.rb
blob: 7cfaf69d35f85ab05221645d41e4989ad1fd2b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
# This schema creates tables without columns for the translated fields
ActiveRecord::Schema.define do  
  create_table :blogs, :force => true do |t|
    t.string :name
  end

  create_table :posts, :force => true do |t|
    t.references :blog
  end
end