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,11 @@
class CreateRpWorlds < ActiveRecord::Migration[6.1]
def change
create_table :rp_worlds do |t|
t.string :name
t.string :description
t.belongs_to :user
t.timestamps
end
end
end