Add function to create season
parent
90e302c3ae
commit
b533668445
|
@ -0,0 +1,22 @@
|
|||
const database = require('./../database');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
class Season {
|
||||
constructor(id, year) {
|
||||
this.id = id;
|
||||
this.year = year;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
async function create(year) {
|
||||
const query = `INSERT INTO scores.seasons(school_year)
|
||||
VALUES($1)
|
||||
RETURNING season_id;`;
|
||||
const id = (await database.executeQuery(query, [year]))[0][0];
|
||||
return new Season(id, year);
|
||||
}
|
Reference in New Issue