Fix expired announcements being re-published (#12964)

This commit is contained in:
Eugen Rochko
2020-01-26 22:43:18 +01:00
committed by GitHub
parent 2f8c3c17ee
commit 401f32f9ee
5 changed files with 16 additions and 9 deletions

View File

@ -0,0 +1,5 @@
class AddPublishedAtToAnnouncements < ActiveRecord::Migration[5.2]
def change
add_column :announcements, :published_at, :datetime
end
end