blob: 512773f1dd29f0703d6477c96bbf36d9ba95faca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateTitles < ActiveRecord::Migration[6.1]
def change
create_table :titles do |t|
t.string :gid
t.string :name
t.timestamps
end
add_reference :characters, :active_title, foreign_key: { to_table: :titles }
end
end
|