import fs from 'fs'; import path from 'path'; import { fileURLToPath } from 'url'; import pkg from 'pg'; const { Pool } = pkg; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const schemaPath = path.join(__dirname, '../schema.sql'); const pool = new Pool({ connectionString: process.env.DATABASE_URL || 'postgresql://localhost:5432/tekdek_command_center' }); async function setup() { const client = await pool.connect(); try { console.log('📁 Reading schema...'); const schema = fs.readFileSync(schemaPath, 'utf-8'); console.log('🔨 Creating tables...'); await client.query(schema); console.log('✅ Database schema created successfully!'); // Verify tables const tables = await client.query(` SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' ORDER BY table_name; `); console.log('📋 Created tables:'); tables.rows.forEach(row => console.log(` - ${row.table_name}`)); } catch (error) { console.error('❌ Error setting up database:', error.message); process.exit(1); } finally { client.release(); await pool.end(); } } setup();