Class: CreateSettings

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/rflow/configuration/migrations/20010101000000_create_settings.rb

Class Method Summary collapse

Class Method Details

.downObject



11
12
13
# File 'lib/rflow/configuration/migrations/20010101000000_create_settings.rb', line 11

def self.down
  drop_table :settings
end

.upObject



2
3
4
5
6
7
8
9
# File 'lib/rflow/configuration/migrations/20010101000000_create_settings.rb', line 2

def self.up
  create_table(:settings, :id => false) do |t|
    t.string :name, :primary => true
    t.text   :value

    t.timestamps
  end
end