12 lines
212 B
Ruby
12 lines
212 B
Ruby
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
|