column name | data type | details |
---|---|---|
id | integer | not null, primary key |
username | string | not null, indexed, unique |
image_url | string | |
description | text | |
password_digest | string | not null |
session_token | string | not null |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
title | string | not null |
image_url | string | not null |
description | text | |
user_id | integer | not null, foreign key (references users), indexed |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
board_name | string | not null |
description | text | |
user_id | integer | not null, foreign key (references users), indexed |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
board_id | integer | not null, foreign key (references boards), indexed |
pin_id | integer | not null, foreign key (references pins), indexed |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
following_id | integer | not null, foreign key (references users), indexed |
follower_id | integer | not null, foreign key (references users), indexed |