4 lines
92 B
SQL
4 lines
92 B
SQL
ALTER TABLE comments
|
|
ADD COLUMN user_id UUID
|
|
REFERENCES users (user_id) ON DELETE SET NULL;
|