blob: 83bd143f86a341276ef6b5cd800881708a10164b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class CreateLocations < ActiveRecord::Migration[6.1]
def change
create_table :locations do |t|
t.string :gid
t.string :name
t.text :description
t.jsonb :whatnot
t.timestamps
end
add_index :locations, :gid
add_reference :activities, :location
end
end
|