accescible_app/db/migrate/20110422144942_create_cible_urls.rb
Nicolas Bally d4484275e8 initial
2011-06-25 12:08:06 +02:00

17 lines
283 B
Ruby

# -*- encoding : utf-8 -*-
class CreateCibleUrls < ActiveRecord::Migration
def self.up
create_table :cible_urls do |t|
t.string :url
t.timestamps
end
CibleType.create(:slug => "CibleUrl", :name => "Lien externe")
end
def self.down
drop_table :cible_urls
end
end