From c6f5e375dbd6fd17a5c162ecc3ad6b633452afef Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Sun, 11 Feb 2024 23:46:54 +0100 Subject: Include generated sql files --- model/models_mysql.go | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 model/models_mysql.go (limited to 'model/models_mysql.go') diff --git a/model/models_mysql.go b/model/models_mysql.go new file mode 100644 index 0000000..359e583 --- /dev/null +++ b/model/models_mysql.go @@ -0,0 +1,49 @@ +//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 +} -- cgit v1.2.3-70-g09d2