mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-10 14:24:57 -05:00
make use of _simple_select_one_onecol, improved comments
This commit is contained in:
parent
e40a510fbf
commit
16d78be315
2 changed files with 15 additions and 8 deletions
|
|
@ -16,6 +16,10 @@
|
|||
-- a table of monthly active users, for use where blocking based on mau limits
|
||||
CREATE TABLE monthly_active_users (
|
||||
user_id TEXT NOT NULL,
|
||||
-- Last time we saw the user. Not guaranteed to be accurate due to rate limiting
|
||||
-- on updates, Granularity of updates governed by
|
||||
-- syanpse.storage.monthly_active_users.LAST_SEEN_GRANULARITY
|
||||
-- Measured in ms since epoch.
|
||||
timestamp BIGINT NOT NULL
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue