mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-26 10:06:15 -05:00
8 lines
171 B
Ruby
8 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddCollectionsURLToAccounts < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :accounts, :collections_url, :string
|
|
end
|
|
end
|