Add JoFotara linking modal and fix company limit
This commit is contained in:
12
fix-limit.js
Normal file
12
fix-limit.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const { Pool } = require('pg');
|
||||
const pool = new Pool({
|
||||
user: 'postgres',
|
||||
host: '127.0.0.1',
|
||||
database: 'musadaq',
|
||||
password: 'postgres_password',
|
||||
port: 5432,
|
||||
});
|
||||
pool.query("UPDATE subscriptions SET max_companies = -1", (err, res) => {
|
||||
console.log(err ? err : "Updated successfully!");
|
||||
pool.end();
|
||||
});
|
||||
Reference in New Issue
Block a user