summaryrefslogtreecommitdiff
path: root/model/models_mysql.go
blob: 359e5838d4794420c92bfe01cec0308dcff80da6 (plain)
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
//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
}
020-04-19 22:00:56 +0200'>2020-04-19Store path as array -- the delimiter is not always '.'René 'Necoro' Neumann3-36/+44 2020-04-19Split client part to client.goRené 'Necoro' Neumann2-125/+137 2020-04-19IMAP: Create foldersRené 'Necoro' Neumann1-4/+38 2020-04-19Improved IMAPRené 'Necoro' Neumann1-3/+88 2020-04-19Started IMAP connectionRené 'Necoro' Neumann4-0/+152 2020-04-19Use our own logger for debug for convenience sakeRené 'Necoro' Neumann1-2/+3 2020-04-19Fix debug logging m(René 'Necoro' Neumann1-2/+2 2020-04-19Rename util.go to log.go. Add verbose modeRené 'Necoro' Neumann4-24/+54 2020-04-19Clean go.modRené 'Necoro' Neumann2-3/+0 2020-04-19Do not print the parsedCfg anymoreRené 'Necoro' Neumann1-1/+1 2020-04-19Increase go-version to 1.14René 'Necoro' Neumann1-2/+2 2020-04-19CI: go vetRené 'Necoro' Neumann1-0/+3 2020-04-19Fetching and parsing the feedsRené 'Necoro' Neumann5-4/+113 2020-04-19Ignore all config*.ymlRené 'Necoro' Neumann1-1/+1