Cybersecurity-Projects/PROJECTS/advanced/honeypot-network/migrations/001_extensions.sql

11 lines
234 B
SQL

-- ©AngelaMos | 2026
-- 001_extensions.sql
-- +goose Up
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE EXTENSION IF NOT EXISTS "pg_trgm";
-- +goose Down
DROP EXTENSION IF EXISTS "pg_trgm";
DROP EXTENSION IF EXISTS "uuid-ossp";