ecoffee/db/migrate/20250310183912_create_fairies.rb

12 lines
282 B
Ruby

class CreateFairies < ActiveRecord::Migration[8.0]
def change
create_table :fairies do |t|
t.integer :location
t.boolean :is_despawned
t.boolean :is_suggested
t.references :instance, null: false, foreign_key: true
t.timestamps
end
end
end