Class: CreateSixconfigs

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/six-updater-web/db/migrate/20090826190008_create_sixconfigs.rb

Class Method Summary collapse

Class Method Details

.downObject



13
14
15
# File 'lib/six-updater-web/db/migrate/20090826190008_create_sixconfigs.rb', line 13

def self.down
  drop_table :sixconfigs
end

.upObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/six-updater-web/db/migrate/20090826190008_create_sixconfigs.rb', line 2

def self.up
  create_table :sixconfigs do |t|
    t.string :name

    t.integer :current_setting_id
    t.integer :current_server_id

    t.timestamps :lock_version => false
  end
end