summaryrefslogtreecommitdiff
path: root/model/models_mysql.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2024-02-14 23:38:53 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2024-02-14 23:38:53 +0100
commitb3485c78114e505b7bc9c6969afa108ea3f4755c (patch)
tree440b6ac6d2f29074945294a66929d8a12fe30505 /model/models_mysql.go
parent90acc67af9a7d372be5fa9cab7a34412ce4ad824 (diff)
downloadgosten-b3485c78114e505b7bc9c6969afa108ea3f4755c.tar.gz
gosten-b3485c78114e505b7bc9c6969afa108ea3f4755c.tar.bz2
gosten-b3485c78114e505b7bc9c6969afa108ea3f4755c.zip
Remove sqlite support: the differences with sqlc just get too cumbersome
Diffstat (limited to 'model/models_mysql.go')
-rw-r--r--model/models_mysql.go49
1 files changed, 0 insertions, 49 deletions
diff --git a/model/models_mysql.go b/model/models_mysql.go
deleted file mode 100644
index 359e583..0000000
--- a/model/models_mysql.go
+++ /dev/null
@@ -1,49 +0,0 @@
-//go:build !sqlite
-
-// Code generated by sqlc. DO NOT EDIT.
-// versions:
-// sqlc v1.25.0
-
-package model
-
-import (
- "database/sql"
- "time"
-)
-
-type Category struct {
- ID int32
- Name string
- ParentID sql.NullInt32
- UserID int32
-}
-
-type ConstExpense struct {
- ID int32
- Description sql.NullString
- Expense string
- Months int32
- Start time.Time
- End time.Time
- PrevID sql.NullInt32
- UserID int32
- CategoryID int32
-}
-
-type SingleExpense struct {
- ID int32
- Description sql.NullString
- Expense string
- Year int32
- Month int32
- Day int32
- UserID int32
- CategoryID int32
-}
-
-type User struct {
- ID int32
- Name string
- Pwd string
- Description sql.NullString
-}