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

23 lines
471 B
Ruby

# -*- encoding : utf-8 -*-
class CreateImageContents < ActiveRecord::Migration
def self.up
create_table :image_contents do |t|
t.references :image_file
t.integer :width
t.integer :height
t.string :alignement
t.boolean :expandable
t.string :style
t.string :alt
t.timestamps
end
ContentType.create(:slug => "ImageContent", :name => "Image")
end
def self.down
drop_table :image_contents
end
end