stack/deploy/db_migrations/init/init.sql

7 lines
152 B
MySQL
Raw Normal View History

2023-05-22 00:05:33 +02:00
CREATE USER egommerce;
CREATE DATABASE egommerce;
2024-12-24 14:29:04 +01:00
2023-05-22 00:12:08 +02:00
GRANT ALL PRIVILEGES ON DATABASE egommerce TO egommerce;
2024-12-24 14:29:04 +01:00
CREATE EXTENSION IF NOT EXISTS "pgcrypto";