gambosite/db/migrate/20250227233421_create_lootbans.rb

10 lines
158 B
Ruby
Raw Normal View History

2025-02-27 15:47:41 -08:00
class CreateLootbans < ActiveRecord::Migration[8.0]
def change
create_table :lootbans do |t|
t.string :name
t.timestamps
end
end
end