We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
insoshi / db / migrate / 020_remove_session_column.rb
100644 10 lines (8 sloc) 0.203 kb
1
2
3
4
5
6
7
8
9
10
class RemoveSessionColumn < ActiveRecord::Migration
  def self.up
    remove_column :page_views, :session
  end
 
  def self.down
    add_column :page_views, :session, :string, :limit => 32
  end
end