Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
wizards
mffzoom
Commits
99bb3738
Commit
99bb3738
authored
Apr 14, 2020
by
Martin Mareš
Browse files
DB: Zoom stealthily switched to longer meetingd IDs
parent
e9e807b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
db.ddl
View file @
99bb3738
...
...
@@ -7,7 +7,7 @@ CREATE TABLE zoom_users (
CREATE TABLE zoom_meetings (
mid serial PRIMARY KEY,
meeting_id int UNIQUE NOT NULL, -- Zoom's meeting ID
meeting_id
big
int UNIQUE NOT NULL, -- Zoom's meeting ID
uuid varchar(255) NOT NULL, -- Zoom's meeting instance ID
host_uid int NOT NULL REFERENCES zoom_users(uid) ON DELETE CASCADE,
topic varchar(255) DEFAULT '',
...
...
@@ -16,7 +16,7 @@ CREATE TABLE zoom_meetings (
CREATE TABLE zoom_schedule (
id serial PRIMARY KEY,
mid int NOT NULL REFERENCES zoom_meetings(mid) ON DELETE CASCADE,
mid
big
int NOT NULL REFERENCES zoom_meetings(mid) ON DELETE CASCADE,
occurrence_id bigint DEFAULT 0, -- Occurrence for recurring meetings, 0 otherwise
start_time timestamp NOT NULL,
duration int NOT NULL, -- minutes
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment