blob: 6ac9a29aa291ac9b5de539af98d859b2523debbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateGlobals < ActiveRecord::Migration[7.1]
def change
create_table :globals do |t|
t.string :key
t.string :string_value
t.integer :int_value
t.timestamps
end
end
end
|