ecole_eft_app/db/migrate/20110422144942_create_cible_urls.rb
Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +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