ActiveRecord::Schema.define(:version => 1) do create_table "accounts", :force => true do |t| t.column :name, :string, :limit => 255 end create_table "dummies", :force => true do |t| t.column :name, :string, :limit => 255 t.column :account_id, :integer end end