site_perso_app/db/migrate/20130205231250_create_portfolio_images.rb
2013-02-07 11:44:54 +01:00

15 lines
284 B
Ruby

class CreatePortfolioImages < ActiveRecord::Migration
def change
create_table :portfolio_images do |t|
t.string :photo
t.string :title
t.string :slug
t.text :tags
t.text :description
t.datetime :shoot_at
t.timestamps
end
end
end