Class: DropDefaultRoomId

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/janky/database/migrate/1317384629_drop_default_room_id.rb

Class Method Summary collapse

Class Method Details

.downObject



6
7
8
# File 'lib/janky/database/migrate/1317384629_drop_default_room_id.rb', line 6

def self.down
  change_column :repositories, :room_id, :integer, :default => 376289, :null => false
end

.upObject



2
3
4
# File 'lib/janky/database/migrate/1317384629_drop_default_room_id.rb', line 2

def self.up
  change_column :repositories, :room_id, :integer, :default => nil, :null => true
end