mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-05-02 08:59:17 -05:00
12 lines
283 B
SQL
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
|