If you receive these error messages, you need to run the following SQL against the database:

INSERT INTO TST_PROJECT_ATTACHMENT_TYPE
(
PROJECT_ID, NAME, DESCRIPTION, ACTIVE_YN, DEFAULT_YN
)
VALUES
(
[PROJECT_ID], 'Default', 'The default document type for a project', 'Y', 'Y'
)
GO

INSERT INTO TST_PROJECT_ATTACHMENT_FOLDER
(
PROJECT_ID, PARENT_PROJECT_ATTACHMENT_FOLDER_ID, NAME
)
VALUES
(
[PROJECT_ID], NULL, 'Root Folder'
)
GO

where [PROJECT_ID] is replaced by the ID of your actual project.