mirror of
https://github.com/ente-io/ente.git
synced 2025-04-30 11:35:46 +00:00
7 lines
190 B
SQL
7 lines
190 B
SQL
-- DELETE source column if exists
|
|
ALTER TABLE users
|
|
DROP COLUMN IF EXISTS source;
|
|
-- DELETE delete_feedback column if exists
|
|
ALTER TABLE users
|
|
DROP COLUMN IF EXISTS delete_feedback;
|