-
Notifications
You must be signed in to change notification settings - Fork 1
database schema
Anastassia Bobokalonova edited this page Apr 12, 2018
·
3 revisions
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
username | string | not null, indexed, unique |
string | not null, indexed, unique | |
password_digest | string | not null |
session_token | string | not null, indexed, unique |
avatar_url | string | default: (url to guest image) |
description | string |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
user_id | integer | not null, foreign key (references users), indexed |
title | string | not null |
description | string | |
thumbnail_url | string | not null |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
img_url | string | not null |
caption | string | |
project_id | integer | not null, foreign key (references projects), indexed |
column name | data type | details |
---|---|---|
user_id | integer | not null, foreign key (references users), indexed |
project_id | integer | not null, foreign key (references projects), indexed |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
user_id | integer | not null |
project_id | integer | not null |
body | string | not null |