mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-27 22:23:43 +01: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
|