blob: 883d82a740741d25fef5fd35479399c654904963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateActivities < ActiveRecord::Migration[6.1]
def change
create_table :activities do |t|
t.string :gid
t.string :name
t.text :description
t.jsonb :whatnot
t.timestamps
end
end
end
|