mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2025-12-13 17:10:36 +00:00
8 lines
285 B
SQL
8 lines
285 B
SQL
-- Create test databases for integration tests
|
|
CREATE DATABASE resolvespec_test;
|
|
CREATE DATABASE restheadspec_test;
|
|
|
|
-- Grant all privileges to postgres user
|
|
GRANT ALL PRIVILEGES ON DATABASE resolvespec_test TO postgres;
|
|
GRANT ALL PRIVILEGES ON DATABASE restheadspec_test TO postgres;
|