-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Theo Summer edited this page Feb 19, 2018
·
4 revisions
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
username | string | not null, indexed, unique |
password_digest | string | not null |
session_token | string | not null, indexed, unique |
created_at | datetime | not null |
updated_at | datetime | not null |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
title | string | not null, indexed |
description | text | not null |
user_id | integer | not null, indexed |
activities | json | not null |
votes | json | |
created_at | datetime | not null |
updated_at | datetime | not null |