mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 13:37:58 +00:00
14 lines
376 B
PL/PgSQL
14 lines
376 B
PL/PgSQL
BEGIN;
|
|
ALTER table public_collection_tokens
|
|
DROP COLUMN IF EXISTS pw_hash,
|
|
DROP COLUMN IF EXISTS pw_nonce,
|
|
DROP COLUMN IF EXISTS mem_limit,
|
|
DROP COLUMN IF EXISTS ops_limit,
|
|
DROP COLUMN IF EXISTS enable_download,
|
|
DROP COLUMN IF EXISTS enable_comment;
|
|
|
|
|
|
ALTER TABLE public_collection_tokens
|
|
DROP CONSTRAINT IF EXISTS pct_pw_state_constraint;
|
|
COMMIT;
|