adds Settings

This commit is contained in:
Juanjo Bazán
2015-08-17 18:13:30 +02:00
parent fabcb42328
commit a13f4920a1
3 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
class AddSettings < ActiveRecord::Migration
def change
create_table :settings do |t|
t.string :key
t.string :value
end
end
end