mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
596fdcba81
relates to https://github.com/coder/internal/issues/927 Refactors dbtestutil to use a `Broker` struct to create test databases. Additionally uses a `coder_testing` database to record test databases that are created and when they are dropped. This is in preparation for the PR above this in the stack which adds a "cleaner" subprocess that cleans out any databases that were left when the test process ends.
9 lines
349 B
SQL
9 lines
349 B
SQL
CREATE TABLE IF NOT EXISTS test_databases (
|
|
name text PRIMARY KEY,
|
|
created_at timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
dropped_at timestamp with time zone, -- null means it hasn't been dropped
|
|
process_uuid uuid NOT NULL
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS test_databases_process_uuid ON test_databases (process_uuid, dropped_at);
|