CREATE TABLE ProjectCategory ( id integer NOT NULL, project_id integer NOT NULL, name varchar(255) NOT NULL, biaya integer NOT NULL, created_at TIMESTAMP DEFAULT current_timestamp, PRIMARY KEY(id), CONSTRAINT fk_project FOREIGN KEY(project_id) REFERENCES Project(id) )