check last_write_at field when applying rate limits to channels

This commit is contained in:
Lee Lawlor
2015-03-11 16:27:47 -04:00
parent 749b09517c
commit ca5acacee9
9 changed files with 14 additions and 3 deletions

View File

@ -0,0 +1,6 @@
class AddLastWriteAtToChannels < ActiveRecord::Migration
def change
add_column :channels, :last_write_at, :datetime
end
end