| 123456789 |
- CREATE TABLE IF NOT EXISTS users_homes (
- user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
- home_id UUID NOT NULL REFERENCES homes(id) ON DELETE CASCADE,
- is_admin BOOLEAN DEFAULT false,
- created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,
- PRIMARY KEY (user_id, home_id)
- )
|