123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package postgres
- import (
- "context"
- "github.com/usememos/memos/store"
- )
- func (d *DB) FindMigrationHistoryList(ctx context.Context, _ *store.FindMigrationHistory) ([]*store.MigrationHistory, error) {
- query := "SELECT version, created_ts FROM migration_history ORDER BY created_ts DESC"
- rows, err := d.db.QueryContext(ctx, query)
- if err != nil {
- return nil, err
- }
- defer rows.Close()
- list := make([]*store.MigrationHistory, 0)
- for rows.Next() {
- var migrationHistory store.MigrationHistory
- if err := rows.Scan(
- &migrationHistory.Version,
- &migrationHistory.CreatedTs,
- ); err != nil {
- return nil, err
- }
- list = append(list, &migrationHistory)
- }
- if err := rows.Err(); err != nil {
- return nil, err
- }
- return list, nil
- }
- func (d *DB) UpsertMigrationHistory(ctx context.Context, upsert *store.UpsertMigrationHistory) (*store.MigrationHistory, error) {
- stmt := `
- INSERT INTO migration_history (
- version
- )
- VALUES ($1)
- ON CONFLICT(version) DO UPDATE
- SET
- version=EXCLUDED.version
- RETURNING version, created_ts
- `
- var migrationHistory store.MigrationHistory
- if err := d.db.QueryRowContext(ctx, stmt, upsert.Version).Scan(
- &migrationHistory.Version,
- &migrationHistory.CreatedTs,
- ); err != nil {
- return nil, err
- }
- return &migrationHistory, nil
- }
|