mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 12:16:14 +00:00
9 lines
218 B
Ruby
9 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddAvatarMetaToAccounts < ActiveRecord::Migration[8.0]
|
|
def change
|
|
safety_assured { add_column :accounts, :meta, :json }
|
|
add_column :accounts, :blurhash, :string
|
|
end
|
|
end
|