socialforge/db/migrate/20161201073217_create_profe...

10 lines
175 B
Ruby
Raw Normal View History

2016-12-01 15:57:42 +08:00
class CreateProfessionalLevels < ActiveRecord::Migration
def change
create_table :professional_levels do |t|
t.string :level
t.timestamps
end
end
end