Skip to content

Database Schema

Theo Summer edited this page Feb 19, 2018 · 4 revisions

users

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

experiences

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
Clone this wiki locally