mirror of
https://github.com/mastodon/mastodon
synced 2024-12-03 01:08:23 +09:00
6 lines
153 B
Ruby
6 lines
153 B
Ruby
|
class AddStatusIdsToAnnouncements < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :announcements, :status_ids, :bigint, array: true
|
||
|
end
|
||
|
end
|