gitlab-org--gitlab-foss/db/migrate/20170315194013_add_closed_a...

9 lines
178 B
Ruby
Raw Normal View History

# rubocop:disable Migration/Datetime
2017-03-15 20:58:09 +00:00
class AddClosedAtToIssues < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :issues, :closed_at, :datetime
end
end