boissier_app/db/migrate/20110422144942_create_cible_urls.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +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