* Only re-index search when records are updated * Add logs and fixes * Add preview_s3_key to Parties * Add some extra packages to Nixfile * Add logging around custom font use
5 lines
135 B
Ruby
5 lines
135 B
Ruby
class AddPreviewS3KeyToParties < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :parties, :preview_s3_key, :string
|
|
end
|
|
end
|