add creature and base rp_world

This commit is contained in:
2021-06-02 22:24:04 +02:00
parent 5b3da08707
commit 62464846a3
56 changed files with 432 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
class CreateWowCreatures < ActiveRecord::Migration[6.1]
def change
create_table :wow_creatures do |t|
t.integer :creature_id
t.jsonb :name
t.boolean :is_tameable
t.integer :display_id
t.belongs_to :wow_creature_family
t.belongs_to :wow_creature_type
t.timestamps
end
add_index :wow_creatures, :creature_id, unique: true
end
end