Open-Source-Access-Control-.../db/migrate/20130125085218_create_certifications.rb
2014-02-09 00:56:48 -07:00

11 lines
193 B
Ruby
Executable File

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