Files
gitlink-forgeplus/db/migrate/20231101090823_add_pm_project_id.rb
2023-11-02 09:17:32 +08:00

6 lines
128 B
Ruby

class AddPmProjectId < ActiveRecord::Migration[5.2]
def change
add_column :issue_tags, :pm_project_id, :integer
end
end