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