[TSM.ID].[11031972] PXE : Platform X Ecosystem I [118 Module -LIVE-]

This commit is contained in:
TSM.ID
2026-05-25 03:50:05 +07:00
commit e820143b3c
673 changed files with 101320 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
const postgres = require('postgres');
const sql = postgres(process.env.DATABASE_URL);
sql`ALTER TABLE tenants ADD COLUMN IF NOT EXISTS license_number text UNIQUE;`.then(() => {
console.log("Done");
process.exit(0);
}).catch(e => {
console.error(e);
process.exit(1);
});