7 lines
153 B
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)
|
|
);
|