This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/db/migrate/20130110204625_add_read_flag_to_items.rb
2013-01-10 22:21:23 +01:00

6 lines
135 B
Ruby

class AddReadFlagToItems < ActiveRecord::Migration
def change
add_column :items, :read_at, :timestamp, :default => nil
end
end