add friend request id to notifications table

This commit is contained in:
Brian Smith 2013-04-13 22:56:19 -04:00
parent 1328231830
commit 22094206b4
2 changed files with 3 additions and 1 deletions

View File

@ -54,4 +54,5 @@ collapse_user_and_admin.sql
default_gender_to_null.sql
subscribe_email.sql
notifications.sql
notification_type_col_rename.sql
notification_type_col_rename.sql
notifications_add_friend_req_id.sql

View File

@ -0,0 +1 @@
alter table notifications add COLUMN friend_request_id varchar(64) REFERENCES friend_requests(id);