https://github.com/h44z/lightmigrate-sqlite
About Lightweight database migragtion library for Golang - sqlite3 driver
https://github.com/h44z/lightmigrate-sqlite
database golang migration sqlite sqlite3
Last synced: 2 months ago
JSON representation
About Lightweight database migragtion library for Golang - sqlite3 driver
- Host: GitHub
- URL: https://github.com/h44z/lightmigrate-sqlite
- Owner: h44z
- License: mit
- Created: 2022-09-22T21:13:22.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-22T21:18:04.000Z (almost 4 years ago)
- Last Synced: 2025-03-22T21:35:44.798Z (over 1 year ago)
- Topics: database, golang, migration, sqlite, sqlite3
- Language: Go
- Homepage: https://github.com/h44z/lightmigrate
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LightMigrate - sqlite3 migration driver
[](https://codecov.io/gh/h44z/lightmigrate-sqlite)
[](https://opensource.org/licenses/MIT)
[](https://pkg.go.dev/github.com/h44z/lightmigrate-sqlite/sqlite)

[](https://goreportcard.com/report/github.com/h44z/lightmigrate-sqlite)


[](https://github.com/h44z/lightmigrate-sqlite/releases)
This module is part of the [LightMigrate](https://github.com/h44z/lightmigrate) library.
It provides a migration driver for sqlite3.
## Features
* Driver work with sqlite3 (uses cgo, [https://github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)).
* [Examples](./examples)
## Configuration Options
Configuration options can be passed to the constructor using the `With` functions.
| Config Value | Defaults | Description |
|-------------------|-------------------|----------------------------------------------------|
| `MigrationsTable` | schema_migrations | Name of the migrations table. |
| `Logger` | log.Default() | The logger instance that should be used. |
| `VerboseLogging` | false | If set to true, more log messages will be printed. |