upvoters/db/migrations/002_create_slug_to_title.sql

7 lines
153 B
SQL

CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE IF NOT EXISTS titles (
slug text not null,
title text not null,
primary key (slug)
);