🚑 critical changes before deployment
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
c1721e5e8e
commit
055fce482a
9 changed files with 24 additions and 17 deletions
|
@ -54,6 +54,7 @@ func SetupDb() {
|
|||
alder TEXT NOT NULL,
|
||||
utdanningsgrad TEXT NOT NULL,
|
||||
helsepersonell BOOL NOT NULL,
|
||||
harlisens BOOL NOT NULL,
|
||||
kjønn TEXT NOT NULL,
|
||||
svartfør BOOL NOT NULL,
|
||||
fylke TEXT NOT NULL,
|
||||
|
|
|
@ -53,7 +53,7 @@ func GetUserQuestions(respondentID int) ([]UserQuestions, error) {
|
|||
FROM Spørsmålsvar ss
|
||||
LEFT JOIN SvarVurdering sv ON ss.svarID = sv.svarID
|
||||
GROUP BY ss.spørsmålID
|
||||
HAVING COUNT(sv.vurderingID) < 10
|
||||
HAVING COUNT(sv.vurderingID) < 3
|
||||
) AS subquery ON s.spørsmålID = subquery.spørsmålID
|
||||
WHERE subquery.spørsmålID IS NOT NULL
|
||||
LIMIT 5
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
_ "github.com/lib/pq"
|
||||
)
|
||||
|
||||
func InsertUserData(age string, education string, healthcarepersonell bool, gender string, answeredbefore bool, county string, submitdate string) (int, error) {
|
||||
func InsertUserData(age string, education string, healthcarepersonell bool, islicensed bool, gender string, answeredbefore bool, county string, submitdate string) (int, error) {
|
||||
// Connection string
|
||||
psqlInfo := fmt.Sprintf("host=%s port=%d user=%s "+
|
||||
"password=%s dbname=%s sslmode=disable",
|
||||
|
@ -28,8 +28,8 @@ func InsertUserData(age string, education string, healthcarepersonell bool, gend
|
|||
}
|
||||
|
||||
insertStatement := `
|
||||
INSERT INTO Respondent (alder, utdanningsgrad, helsepersonell, kjønn, svartfør, fylke, dato)
|
||||
VALUES ($1, $2, $3, $4, $5, $6, $7)
|
||||
INSERT INTO Respondent (alder, utdanningsgrad, helsepersonell, harlisens, kjønn, svartfør, fylke, dato)
|
||||
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
|
||||
RETURNING respondentID
|
||||
`
|
||||
|
||||
|
@ -40,7 +40,7 @@ func InsertUserData(age string, education string, healthcarepersonell bool, gend
|
|||
defer stmt.Close()
|
||||
|
||||
var respondentID int
|
||||
err = stmt.QueryRow(age, education, healthcarepersonell, gender, answeredbefore, county, submitdate).Scan(&respondentID)
|
||||
err = stmt.QueryRow(age, education, healthcarepersonell, islicensed, gender, answeredbefore, county, submitdate).Scan(&respondentID)
|
||||
if err != nil {
|
||||
log.Fatalf("Error inserting userdata: %v\n", err)
|
||||
}
|
||||
|
|
Reference in a new issue