20140528193902_create_license_infos_table.rb
353 Bytes
class CreateLicenseInfosTable < ActiveRecord::Migration
def self.up
create_table :license_infos do |t|
t.string :version
t.string :link
end
LINK="http://creativecommons.org/licenses/GPL/2.0/legalcode.pt"
LicenseInfo.create(:version=>"CC-GPL-V2", :link=>LINK)
end
def self.down
drop_table :license_infos
end
end