14 lines
480 B
SQL
14 lines
480 B
SQL
-- Database initialization script for MOTM application
|
|
-- This script runs when the PostgreSQL container starts for the first time
|
|
|
|
-- Create the database if it doesn't exist (this is handled by POSTGRES_DB env var)
|
|
-- But we can add any additional setup here
|
|
|
|
-- Create extensions if needed
|
|
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
|
|
|
-- The application will handle table creation through SQLAlchemy
|
|
-- This file is here for any additional database setup that might be needed
|
|
|
|
|