diff --git a/db/migrate/20191218024615_add_project_category_id_and_project_language_id_to_projects.rb b/db/migrate/20191218024615_add_project_category_id_and_project_language_id_to_projects.rb new file mode 100644 index 000000000..4c0e76ad1 --- /dev/null +++ b/db/migrate/20191218024615_add_project_category_id_and_project_language_id_to_projects.rb @@ -0,0 +1,6 @@ +class AddProjectCategoryIdAndProjectLanguageIdToProjects < ActiveRecord::Migration[5.2] + def change + add_column :projects, :project_category_id, :integer + add_column :projects, :project_language_id, :integer + end +end