mirror of
https://github.com/ente-io/ente.git
synced 2025-06-25 11:32:00 +00:00
5 lines
187 B
SQL
5 lines
187 B
SQL
ALTER TABLE kex_store ADD COLUMN user_id BIGINT NOT NULL;
|
|
|
|
ALTER TABLE kex_store
|
|
ADD
|
|
CONSTRAINT fk_kex_store_user_id FOREIGN KEY (user_id) REFERENCES users(user_id) ON DELETE CASCADE; |