7 lines
175 B
Ruby
7 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddBlurhashToMediaAttachments < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :media_attachments, :blurhash, :string
|
|
end
|
|
end
|