Files
pgbackweb/internal/database/migrations/20240720055349_enable_extensions.sql
T
Luis Eduardo Jeréz Girón 7775939a22 Add database migrations
2024-07-20 00:24:20 -06:00

12 lines
283 B
SQL

-- +goose Up
-- +goose StatementBegin
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE EXTENSION IF NOT EXISTS pgcrypto;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP EXTENSION IF EXISTS "uuid-ossp";
DROP EXTENSION IF EXISTS pgcrypto;
-- +goose StatementEnd