This commit is contained in:
wagslane
2024-03-07 09:48:38 -07:00
parent 2b337f9f0f
commit 86874e2f9e
171 changed files with 63081 additions and 7300 deletions

View File

@@ -1,13 +1,12 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.18.0
// sqlc v1.25.0
// source: notes.sql
package database
import (
"context"
"time"
)
const createNote = `-- name: CreateNote :exec
@@ -17,8 +16,8 @@ VALUES (?, ?, ?, ?, ?)
type CreateNoteParams struct {
ID string
CreatedAt time.Time
UpdatedAt time.Time
CreatedAt string
UpdatedAt string
Note string
UserID string
}