10 lines
179 B
Ruby
10 lines
179 B
Ruby
class CreateSetting < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :settings do |t|
|
|
t.string :key
|
|
t.string :value
|
|
t.string :name
|
|
end
|
|
end
|
|
end
|