blob: e1ea2b241c70f619582308bfccdf7dddddec9a13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateGsParameters < ActiveRecord::Migration
def change
create_table :gs_parameters do |t|
t.string :name
t.string :section
t.string :value
t.string :class_type
t.timestamps
end
end
end
|