Class: CreateLogsessions

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

Class Method Summary collapse

Class Method Details

.downObject



10
11
12
# File 'lib/six-updater-web/db/migrate/20090916174333_create_logsessions.rb', line 10

def self.down
  drop_table :logsessions
end

.upObject



2
3
4
5
6
7
8
# File 'lib/six-updater-web/db/migrate/20090916174333_create_logsessions.rb', line 2

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

    t.timestamps :lock_version => false
  end
end