thirteen-tien-len/db/migrate/20231122115709_add_is_global_to_doodads.rb

6 lines
143 B
Ruby

class AddIsGlobalToDoodads < ActiveRecord::Migration[6.1]
def change
add_column :doodads, :is_global, :boolean, default: false
end
end