-
Notifications
You must be signed in to change notification settings - Fork 2
Database Schema
bradens edited this page May 7, 2012
·
19 revisions
##Database Layout #Commits The Commits relation schema. Columns are as follows.
id | commit_id | author | author_email | comments | commit_date | changed_files | file_structure | branch_id |
integer not null auto_increment | character varying(255) | character varying(255) | character varying(255) | text | timestamp with time zone (ex. "2012-05-07 09:33:49-07") | character varying(255) array | character varying(255) array | character varying(255) |
#Files The Files relation schema. Columns are as follows.
id | file_id | file_name | commit_id | raw_file |
integer not null auto_increment | character varying(255) | character varying(255) | character varying(255) | text |
#Branches
branch_id | branch_name | commit_id |
character varying(255) | character varying(255) | character varying(255) |