Files
gitlink-forgeplus/db/migrate/20200317160914_add_language_to_projects.rb
2020-03-19 17:18:07 +08:00

6 lines
127 B
Ruby

class AddLanguageToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :language, :string
end
end