Compare commits

..

No commits in common. "backup" and "master" have entirely different histories.

6 changed files with 12 additions and 11 deletions

View file

@ -3,14 +3,13 @@ package main
import (
"database/sql"
"flag"
"log"
"os"
"git.katuwoss.dev/JustScreaMy/secret-santa/internal/app"
"git.katuwoss.dev/JustScreaMy/secret-santa/internal/config"
_ "github.com/go-sql-driver/mysql"
_ "github.com/jackc/pgx/v5/stdlib"
_ "github.com/mattn/go-sqlite3"
"log"
"os"
)
var (

View file

@ -3,12 +3,11 @@ package config
import (
"encoding/json"
"fmt"
"github.com/go-playground/validator/v10"
"io"
"os"
"path/filepath"
"github.com/go-playground/validator/v10"
"github.com/pelletier/go-toml/v2"
"gopkg.in/yaml.v3"
)

View file

@ -1,6 +1,10 @@
-- +migrate Up
CREATE TABLE users (
id UUID PRIMARY KEY,
id INTEGER PRIMARY KEY,
first_name VARCHAR(64) NOT NULL,
last_name VARCHAR(64) NOT NULL,
email VARCHAR(128) NOT NULL
);
);
-- +migrate Down
DROP TABLE IF EXISTS users;

View file

@ -1 +0,0 @@
DROP TABLE IF EXISTS users;

View file

@ -1,8 +1,8 @@
version: "2"
sql:
- engine: postgresql
queries: sql/queries/postgres/
schema: sql/migrations/postgres/
- engine: sqlite
queries: sql/queries/
schema: sql/migrations/
gen:
go:
package: "queries"