gambosite/db/migrate/20250227233421_create_lootbans.rb
2025-02-27 15:47:41 -08:00

10 lines
158 B
Ruby

class CreateLootbans < ActiveRecord::Migration[8.0]
def change
create_table :lootbans do |t|
t.string :name
t.timestamps
end
end
end