Here is some code
class CreateAuctions < ActiveRecord::Migration
def self.up
create_table :auctions do |t|
t.string :title
t.string :owner
t.string :location
t.text :google_map_url
t.text :body
t.date :date
t.timestamps
end
end
def self.down
drop_table :auctions
end
end
Posted
by Patrick Paul-Hus
