require('dotenv').config(); const fs = require('fs'); const path = require('path'); const pool = require('../server/db'); async function main() { const sqlPath = path.join(__dirname, '../db/migrate-painting-annotations.sql'); const sql = fs.readFileSync(sqlPath, 'utf8'); await pool.query(sql); const { rows } = await pool.query(`SELECT COUNT(*)::int AS total FROM painting_annotations`); console.log(`painting_annotations ready (${rows[0].total} rows)`); await pool.end(); } main().catch((err) => { console.error(err); process.exit(1); });