EN
                                
                            
                        Node.js - PostgreSQL Drop table
                                    3
                                    points
                                
                                In this article, we would like to show you how to delete a table in Node.js.
const { Client } = require('pg');
const client = new Client({
    host: '127.0.0.1',
    user: 'postgres',
    database: 'database_name',
    password: 'password',
    port: 5432,
});
const deleteTable = async () => {
    try {
        await client.connect();                     // gets connection
        await client.query('DROP TABLE "users"');   // sends queries
        return true;
    } catch (error) {
        console.error(error.stack);
        return false;
    } finally {
        await client.end();                         // closes connection
    }
};
deleteTable().then((result) => {
    if (result) {
        console.log('Table deleted');
    }
});
Database preparation
create_tables.sql file:
CREATE TABLE "users" (
	"id" SERIAL,
	"name" VARCHAR(100) NOT NULL,
	"role" VARCHAR(15) NOT NULL,
	PRIMARY KEY ("id")
);
                                    
                                    
                                