Skip to content

Commit

Permalink
sql data changes for adding blocked_date
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter committed Mar 12, 2020
1 parent a557e7d commit ed24c4e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sql_data_dictionary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ viewing organization is the org in the `affiliation_id`), but some of the fields
| user__email_address | citext | User's current email address |
| user__phone_number | varchar(15) | User's current phone number |
| user__postal_code | varchar(10) | User's current zip code |
| user__blocked_date | timestamptz | Timestamp that the User was blocked by the organization. `null` if the User is not blocked |
| event_id | integer | Foreign Key to the related Event. This field is `null` if the organization and the affiliated organization are cross firewall. |
| timeslot_id | integer | Foreign Key to the related Timeslot. This field is `null` if the organization and the affiliated organization are cross firewall. |
| override_start_date | timestamptz | Time that an event's start was overridden to. This only applies for "pick a time" virtual events that were synced from VAN. |
Expand Down Expand Up @@ -222,6 +223,7 @@ The `users` view contains information about members of the Organization.
| email_address | citext | User's email address |
| phone_number | varchar(15) | User's phone number |
| postal_code | varchar(10) | User's zip code |
| blocked_date | timestamptz | Time that the User was blocked by the organization. `null` if the User is not blocked |
| membership_id | integer | Foreign Key to the Membership of this User in the Organization |
| membership__created_date | timestamptz | Time that the Membership was created |
| membership__modified_date | timestamptz | Time that the Membership was last updated |
Expand Down Expand Up @@ -312,6 +314,10 @@ The `van_locations` view contains information about the mapping of Mobilize Even

# Changelog

**2020-03-17**
- Add `blocked_date` to [`users`](#users) view
- Add `user__blocked_date` to [`participations`](#participations) view

**2020-02-25**
- Add `sync_aggregation` and `event_campaign_id` to [`van_events`](#van-events) view
- Add `sync_aggregation`, `event_campaign_id`, `start_date`, `end_date`, and `van_event_campaign_timezone` to [`van_shifts`](#van-shifts) view
Expand Down

0 comments on commit ed24c4e

Please sign in to comment.