add expire at

This commit is contained in:
Pete Matsyburka
2024-08-01 16:43:55 +03:00
parent c4a91c2b34
commit 3a2910f717
13 changed files with 93 additions and 16 deletions
@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddExpireAtToSubmissions < ActiveRecord::Migration[7.1]
def change
add_column :submissions, :expire_at, :datetime
end
end