blog_perso_app/db/migrate/20110708093908_create_external_links.rb
Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

22 lines
339 B
Ruby

class CreateExternalLinks < ActiveRecord::Migration
def self.up
create_table :external_links do |t|
t.string :title
t.text :description
t.string :url
t.timestamps
end
CibleType.create(:slug => "ExternalLink", :name => "Lien externe")
end
def self.down
drop_table :external_links
end
end