8 lines
153 B
MySQL
8 lines
153 B
MySQL
|
|
CREATE EXTENSION IF NOT EXISTS pgcrypto;
|
||
|
|
|
||
|
|
CREATE TABLE IF NOT EXISTS titles (
|
||
|
|
slug text not null,
|
||
|
|
title text not null,
|
||
|
|
primary key (slug)
|
||
|
|
);
|