Open-Source-Access-Control-.../db/migrate/20130125085218_create_certifications.rb

11 lines
193 B
Ruby

class CreateCertifications < ActiveRecord::Migration
def change
create_table :certifications do |t|
t.string :name
t.string :description
t.timestamps
end
end
end