Pinterest-style visual bookmarking app with: - URL metadata extraction (OG/Twitter meta, oEmbed fallback) - Image caching in Postgres with 480px thumbnails - Multi-tag filtering with Ctrl/Cmd for OR mode - Fuzzy tag suggestions and inline tag editing - Browser console auth() with first-use password setup - Brutalist UI with Commit Mono font and Pico CSS - Light/dark mode via browser preference
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
package dialects
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pressly/goose/v3/database/dialect"
|
|
)
|
|
|
|
// Redshift returns a new [dialect.Querier] for Redshift dialect.
|
|
func NewRedshift() dialect.Querier {
|
|
return &redshift{}
|
|
}
|
|
|
|
type redshift struct{}
|
|
|
|
var _ dialect.Querier = (*redshift)(nil)
|
|
|
|
func (r *redshift) CreateTable(tableName string) string {
|
|
q := `CREATE TABLE %s (
|
|
id integer NOT NULL identity(1, 1),
|
|
version_id bigint NOT NULL,
|
|
is_applied boolean NOT NULL,
|
|
tstamp timestamp NULL default sysdate,
|
|
PRIMARY KEY(id)
|
|
)`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) InsertVersion(tableName string) string {
|
|
q := `INSERT INTO %s (version_id, is_applied) VALUES ($1, $2)`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) DeleteVersion(tableName string) string {
|
|
q := `DELETE FROM %s WHERE version_id=$1`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) GetMigrationByVersion(tableName string) string {
|
|
q := `SELECT tstamp, is_applied FROM %s WHERE version_id=$1 ORDER BY tstamp DESC LIMIT 1`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) ListMigrations(tableName string) string {
|
|
q := `SELECT version_id, is_applied from %s ORDER BY id DESC`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) GetLatestVersion(tableName string) string {
|
|
q := `SELECT max(version_id) FROM %s`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|