mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 03:13:41 +01:00
5 lines
153 B
Ruby
5 lines
153 B
Ruby
class AddStatusIdsToAnnouncements < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :announcements, :status_ids, :bigint, array: true
|
|
end
|
|
end
|