- add quest_id column to raids table - add lobby and background image downloads using quest_id - lobby uses quest_id with "1" appended - background uses quest_id for treasureraid directory
5 lines
120 B
Ruby
5 lines
120 B
Ruby
class AddQuestIdToRaids < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :raids, :quest_id, :bigint
|
|
end
|
|
end
|