skeleton/assets/migrations/0_empty.up.sql
2020-07-21 22:50:11 +02:00

6 lines
266 B
SQL

-- this file is only here so the database can track a completely empty state.
-- pgcrypto adds functions for generating UUIDs.
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
-- citext adds indexable case-insensitive text fields.
CREATE EXTENSION IF NOT EXISTS "citext";