9 lines
260 B
SQL
9 lines
260 B
SQL
-- Create databases for Airbyte OSS
|
|
-- These databases will be used by the Airbyte deployment in 04-ingestion
|
|
|
|
-- Main Airbyte database
|
|
CREATE DATABASE airflow_db;
|
|
|
|
-- Grant permissions to postgres user
|
|
GRANT ALL PRIVILEGES ON DATABASE airflow_db TO postgres;
|