gosmm

package module
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 18, 2023 License: MIT Imports: 10 Imported by: 0

README

GoSMM

Golang Simple Migration Manager

GoDoc GitHub release

Overview

GoSMM is a simple yet powerful SQL migration manager written in Go. This library enables you to manage SQL database migrations for multiple database drivers including Postgres, MySQL, and SQLite3.

The GoSMM package allows you to perform tasks like:

  • Checking migration integrity.
  • Executing migration files in order.
  • Creating migration history tables.
  • Rollback transactions on failure.

Installation

To get started, you can install GoSMM using go get:

```bash
go get github.com/k1e1n04/gosmm
```

Usage

Configuration
```go
config := gosmm.DBConfig{
    Driver:        os.Getenv("DB_DRIVER"),
    Host:          os.Getenv("DB_HOST"),
    Port:          os.Getenv("DB_PORT"),
    User:          os.Getenv("DB_USER"),
    Password:      os.Getenv("DB_PASSWORD"),
    DBName:        os.Getenv("DB_NAME"),
    MigrationsDir: os.Getenv("MIGRATIONS_DIR"),
}
```
Fields:
  • Driver: Database driver ("postgres", "mysql", or "sqlite3").
  • Host: Hostname of your database.
  • Port: Port number for the database.
  • User: Username for the database.
  • Password: Password for the database.
  • DBName: The name of the database.
  • MigrationsDir: Directory where your SQL migration files are stored.
Performing Migrations

To perform migrations, use the Migrate function:

```go
db, err := gosmm.Connect(config)
if err != nil {
    log.Fatalf("Connection failed: %v", err)
}
err := gosmm.Migrate(db, config)
if err != nil {
    log.Fatalf("Migration failed: %v", err)
}
```

This will:

  1. Connect to the database.
  2. Validate the DB configuration.
  3. Check migration integrity.
  4. Execute pending migrations.

How to Contribute

Contributions are welcome! Feel free to submit a pull request on GitHub.

License

This project is licensed under the MIT License.

Disclaimer

Please make sure to back up your database before running migrations. The maintainers are not responsible for any data loss.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ConnectDB

func ConnectDB(config DBConfig) (*sql.DB, error)

ConnectDB connects to the database based on the given DBConfig

func Migrate

func Migrate(db *sql.DB, config DBConfig) error

Migrate executes the SQL migrations in the given directory

Types

type DBConfig

type DBConfig struct {
	Driver        string
	Host          string
	Port          int
	User          string
	Password      string
	DBName        string
	MigrationsDir string
}

DBConfig holds the database configuration information

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL