Skip to content

Commit

Permalink
Add last_active_at to Members
Browse files Browse the repository at this point in the history
This is an attribute we will be updating when
a member either registers to vote, or self-confirms
their membership active status.
  • Loading branch information
sarahhay7 committed Jan 16, 2022
1 parent 6a3c3e4 commit db7d321
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions db/migrate/20220116212309_add_last_active_at_to_members.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddLastActiveAtToMembers < ActiveRecord::Migration[6.1]
def change
add_column :members, :last_active_at, :timestamp, null: true
end
end

0 comments on commit db7d321

Please sign in to comment.