socialforge/db/migrate/20161201073217_create_profe...

10 lines
175 B
Ruby

class CreateProfessionalLevels < ActiveRecord::Migration
def change
create_table :professional_levels do |t|
t.string :level
t.timestamps
end
end
end