upvoters/db/migrations/002_create_slug_to_title.sql

8 lines
153 B
MySQL
Raw Normal View History

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