add management of items !

This commit is contained in:
2021-05-29 00:10:32 +02:00
parent f8c539bb87
commit f4f3862c74
24 changed files with 373 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
class CreateWowItemQualities < ActiveRecord::Migration[6.1]
def change
create_table :wow_item_qualities do |t|
t.jsonb :name
t.string :type
t.timestamps
end
add_index :wow_item_qualities, :type, unique: true
end
end