Files
grecia/db/migrate/20150817150457_add_settings.rb
Juanjo Bazán a13f4920a1 adds Settings
2015-08-17 18:13:30 +02:00

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