mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
8 lines
169 B
Ruby
8 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDeclinedAtToSubmitters < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :submitters, :declined_at, :datetime
|
|
end
|
|
end
|