Project

General

Profile

Download (388 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateSettings < ActiveRecord::Migration
def self.up
create_table :settings do |t|
t.string :name
t.text :value
t.text :description
t.string :category
t.string :settings_type
t.text :default, :null => false
t.timestamps
end
add_index :settings, :name, :unique => true
end

def self.down
drop_table :settings
end
end
(81-81/83)