-
Notifications
You must be signed in to change notification settings - Fork 0
/
conection.js
53 lines (39 loc) · 1.1 KB
/
conection.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
var knex = require('knex')({
client:"mysql",
connection:{
user:"root",
host:"localhost",
password:"'",
database:"auction"
}
})
// knex.schema.createTable('Auction', (table) => {
// table.increments('auction_id').primary();
// table.string('auction_name');
// table.float('price');
// // table.string('bidder_id').unique();
// }).then(()=>{
// console.log('crated table');
// }).catch((err)=>{
// console.log(err);
// })
// knex.schema.createTable('bidder',(table) => {
// table.integer('auction_id')
// table.increments('bidder_id')
// table.float('bid_value')
// })
// .then(() => {
// console.log("table created")
// })
// .catch((err) => { console.log(err); throw err })
// knex.schema.createTable('soldOut',(table) => {
// table.integer('auction_id')
// table.integer('bidder_id')
// table.float('max_value')
// table.string('name')
// })
// .then(() => {
// console.log("table created")
// })
// .catch((err) => { console.log(err); throw err })
module.exports=knex;