-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.js
158 lines (139 loc) · 2.88 KB
/
db.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
const { Pool } = require('pg');
const dotenv = require('dotenv');
dotenv.config();
const { DATABASE_URL, TEST_DATABASE_URL, NODE_ENV } = process.env;
let connectionString = '';
if (NODE_ENV === 'test') {
connectionString = TEST_DATABASE_URL;
} else {
connectionString = DATABASE_URL;
}
const pool = new Pool({
connectionString,
});
pool.on('connect', () => {
});
/**
* Create Tables
*/
const createUserTable = () => {
const queryText =
`CREATE TABLE IF NOT EXISTS
users(
id SERIAL PRIMARY KEY,
email VARCHAR(50) NOT NULL,
first_name VARCHAR(50) NOT NULL,
last_name VARCHAR(50) NOT NULL,
password VARCHAR(255) NOT NULL,
is_admin BOOLEAN NOT NULL
)`;
pool.query(queryText)
.then((res) => {
pool.end();
})
.catch((err) => {
pool.end();
});
};
const createTripTable = () => {
const queryText =
`CREATE TABLE IF NOT EXISTS
trips(
id SERIAL PRIMARY KEY,
seating_capacity INTEGER NOT NULL,
bus_license_number VARCHAR(50) NOT NULL,
origin VARCHAR(50) NOT NULL,
destination VARCHAR(50) NOT NULL,
trip_date VARCHAR(50) NOT NULL,
fare INTEGER NOT NULL,
status VARCHAR(50) NOT NULL DEFAULT 'active'
)`;
pool.query(queryText)
.then((res) => {
pool.end();
})
.catch((err) => {
pool.end();
});
};
const createBookingTable = () => {
const queryText =
`CREATE TABLE IF NOT EXISTS
bookings(
id SERIAL PRIMARY KEY,
user_id INTEGER NOT NULL,
trip_id INTEGER NOT NULL,
seat_number INTEGER NOT NULL,
created_on VARCHAR(50) NOT NULL
)`;
pool.query(queryText)
.then((res) => {
pool.end();
})
.catch((err) => {
pool.end();
});
};
/**
* Drop Tables
*/
const dropUserTable = () => {
const queryText = 'DROP TABLE IF EXISTS users';
pool.query(queryText)
.then((res) => {
pool.end();
})
.catch((err) => {
pool.end();
});
};
const dropTripTable = () => {
const queryText = 'DROP TABLE IF EXISTS trips';
pool.query(queryText)
.then((res) => {
pool.end();
})
.catch((err) => {
pool.end();
});
};
const dropBookingTable = () => {
const queryText = 'DROP TABLE IF EXISTS bookings';
pool.query(queryText)
.then((res) => {
pool.end();
})
.catch((err) => {
pool.end();
});
};
/**
* Create All Tables
*/
const createTables = () => {
createUserTable();
createTripTable();
createBookingTable();
};
/**
* Drop All Tables
*/
const dropTables = () => {
dropUserTable();
dropTripTable();
dropBookingTable();
};
pool.on('remove', () => {
process.exit(0);
});
module.exports = {
createUserTable,
dropUserTable,
createTripTable,
dropTripTable,
createBookingTable,
dropBookingTable,
createTables,
dropTables,
};
require('make-runnable');