gosora/schema/mssql/query_users_blocks.sql
Azareal 8720de83d8 Rudimentary user convo blocking.
Simplify some things.

Add create_block title phrase.
Add remove_block title phrase.
Add create_block_msg phrase.
Add remove_block_msg phrase.
Add profile_unblock phrase.

Add the users_blocks table.

You will need to run the updater / patcher for this commit.
2019-10-18 10:35:13 +10:00

4 lines
85 B
SQL

CREATE TABLE [users_blocks] (
[blocker] int not null,
[blockedUser] int not null
);