add: service edit date + browser session ids

This commit is contained in:
trisua 2025-07-11 18:56:49 -04:00
parent 9aee80493f
commit cfcc2358f4
17 changed files with 148 additions and 29 deletions

View file

@ -3,5 +3,6 @@ CREATE TABLE IF NOT EXISTS services (
created BIGINT NOT NULL,
owner BIGINT NOT NULL,
name TEXT NOT NULL,
files TEXT NOT NULL
files TEXT NOT NULL,
revision BIGINT NOT NULL
)

View file

@ -23,5 +23,6 @@ CREATE TABLE IF NOT EXISTS users (
secondary_permissions INT NOT NULL,
achievements TEXT NOT NULL,
awaiting_purchase INT NOT NULL,
was_purchased INT NOT NULL
was_purchased INT NOT NULL,
browser_session TEXT NOT NULL
)