beast rev 2066
[beast-modified.git] / db / migrate / 009_last_seen_at.rb
blobf9a63f8fb2f5c116b7ef17d3dc4e5342ef15d97b
1 class LastSeenAt < ActiveRecord::Migration
2   def self.up
3     add_column "users", "last_seen_at", :datetime
4   end
6   def self.down
7     remove_column "users", "last_seen_at"
8   end
9 end