mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 04:44:52 -04:00
Revert non-trivial changes to upgrade scripts
This commit is contained in:
parent
e2722f58ee
commit
cda4a6f93f
3 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@
|
|||
*/
|
||||
|
||||
CREATE TABLE IF NOT EXISTS application_services(
|
||||
id BIGINT PRIMARY KEY,
|
||||
id BIGINT PRIMARY KEY AUTOINCREMENT,
|
||||
url VARCHAR(150),
|
||||
token VARCHAR(150),
|
||||
hs_token VARCHAR(150),
|
||||
|
@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS application_services(
|
|||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS application_services_regex(
|
||||
id BIGINT PRIMARY KEY,
|
||||
id BIGINT PRIMARY KEY AUTOINCREMENT,
|
||||
as_id BIGINT NOT NULL,
|
||||
namespace INTEGER, /* enum[room_id|room_alias|user_id] */
|
||||
regex VARCHAR(150),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue