debian-mirror-gitlab/db/migrate/20170315194013_add_closed_at_to_issues.rb
2017-08-17 22:00:37 +05:30

8 lines
141 B
Ruby

class AddClosedAtToIssues < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :issues, :closed_at, :datetime
end
end