ALTER TABLE mangas ADD COLUMN follow BOOLEAN NOT NULL DEFAULT FALSE; CREATE TABLE user_manga_follow ( id BIGSERIAL NOT NULL PRIMARY KEY, user_id BIGINT REFERENCES users (id), manga_id BIGINT REFERENCES mangas (id) );