forgeplus/db/migrate/20200317160914_add_language...

6 lines
127 B
Ruby
Raw Normal View History

2020-03-19 17:18:07 +08:00
class AddLanguageToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :language, :string
end
end