jon.m
08/16/2021, 3:28 PMjason-lynx
08/17/2021, 9:00 AMjason-lynx
08/17/2021, 9:01 AMobjects table that is created automatically when you create a bucket. this table has a foreign key owner that links it to the users table. because of this constraint, postgres might not allow you to delete the user without first deleting all the user's objectsjason-lynx
08/17/2021, 9:04 AMowner foreign key, with an ON DELETE CASCADE constraint (https://www.postgresql.org/docs/current/ddl-constraints.html), so that deleting a user will automatically delete the user's objectsjason-lynx
08/17/2021, 9:06 AMobjects table inside the storage schema by defaultjason-lynx
08/17/2021, 9:06 AMjon.m
08/17/2021, 2:01 PMjon.m
08/17/2021, 2:02 PM