ADD language field to projects table

This commit is contained in:
Jasder
2020-03-19 17:18:07 +08:00
parent bf5e191efa
commit 172093efe9

View File

@@ -0,0 +1,5 @@
class AddLanguageToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :language, :string
end
end