Fewer lies in comments

This commit is contained in:
Mark Haines 2017-09-19 16:55:42 +01:00
parent 5ab0799557
commit 4fbe96eb11

View file

@ -27,7 +27,8 @@ const accountDataSchema = `
-- This sequence is shared between all the tables generated from kafka logs.
CREATE SEQUENCE IF NOT EXISTS syncapi_stream_id;
-- Stores the users account data
-- Stores the types of account data that a user set has globally and in each room
-- and the stream ID when that type was last updated.
CREATE TABLE IF NOT EXISTS syncapi_account_data_type (
-- An incrementing ID which denotes the position in the log that this event resides at.
id BIGINT PRIMARY KEY DEFAULT nextval('syncapi_stream_id'),