This website requires JavaScript.
Explore
Help
Register
Sign In
a
/
gosora
Watch
1
Star
0
Fork
You've already forked gosora
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
6d4bd5cdf2
gosora
/
schema
/
mssql
/
query_users_blocks.sql
4 lines
91 B
MySQL
Raw
Normal View
History
Unescape
Escape
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 00:35:13 +00:00
CREATE
TABLE
[
users_blocks
]
(
remove more useless files
2022-02-21 03:16:15 +00:00
[
blocker
]
int
not
null
,
[
blockedUser
]
int
not
null
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 00:35:13 +00:00
)
;