boissier_app/db/migrate/0101_create_gallery_images.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +02:00

19 lines
338 B
Ruby

# -*- encoding : utf-8 -*-
class CreateGalleryImages < ActiveRecord::Migration
def self.up
create_table :gallery_images do |t|
t.string :title
t.text :description
t.integer :position
t.references :image_file
t.references :gallery_content
t.timestamps
end
end
def self.down
drop_table :gallery_images
end
end