jam-cloud/db/up/friend_request_changes.sql

4 lines
243 B
MySQL
Raw Normal View History

alter table friend_requests drop column accepted;
alter table friend_requests add column status varchar(50);
alter table friend_requests add column message varchar(4000);
alter table friend_requests drop constraint user_friend_request_uniqkey;