feat: implement basic info display for anemos
This commit is contained in:
parent
06a12df43f
commit
ce5d327ca2
34 changed files with 582 additions and 88 deletions
12
db/migrate/20250310183912_create_fairies.rb
Normal file
12
db/migrate/20250310183912_create_fairies.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue