mirror of
https://github.com/ente-io/ente.git
synced 2025-05-01 20:03:07 +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;
|