ual_app/db/migrate/20110422144942_create_cible_urls.rb
2014-08-24 00:18:02 +02:00

17 lines
284 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