9 lines
151 B
Ruby
9 lines
151 B
Ruby
class AddSettings < ActiveRecord::Migration
|
|
def change
|
|
create_table :settings do |t|
|
|
t.string :key
|
|
t.string :value
|
|
end
|
|
end
|
|
end
|