debian-mirror-gitlab/db/migrate/20160629025435_add_column_in_progress_merge_commit_sha_to_merge_requests.rb

9 lines
313 B
Ruby
Raw Normal View History

2016-08-24 12:49:21 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
2018-12-23 12:14:25 +05:30
class AddColumnInProgressMergeCommitShaToMergeRequests < ActiveRecord::Migration[4.2]
2016-08-24 12:49:21 +05:30
def change
add_column :merge_requests, :in_progress_merge_commit_sha, :string
end
end