ecole_eft_app/db/migrate/20101130113844_create_testimonies.rb
2013-07-18 01:23:48 +02:00

19 lines
322 B
Ruby

# -*- encoding : utf-8 -*-
class CreateTestimonies < ActiveRecord::Migration
def self.up
create_table :testimonies do |t|
t.string :author
t.references :image_file
t.text :quote
t.references :menu_item
t.timestamps
end
end
def self.down
drop_table :testimonies
end
end