migrate/driver/sqlite3
David Campbell 9a558eed89 Skip tests requiring a DB connection with the '-short' flag
- go-test target for local testing
2016-10-23 15:01:12 -07:00
..
README.md Add driver for sqlite3 2015-03-08 11:29:20 +09:00
sqlite3.go Move the registry to driver package 2015-10-22 16:29:26 -04:00
sqlite3_test.go Skip tests requiring a DB connection with the '-short' flag 2016-10-23 15:01:12 -07:00

README.md

Sqlite3 Driver

  • Runs migrations in transcations. That means that if a migration failes, it will be safely rolled back.
  • Tries to return helpful error messages.
  • Stores migration version details in table schema_migrations. This table will be auto-generated.

Usage

migrate -url sqlite3://database.sqlite -path ./db/migrations create add_field_to_table
migrate -url sqlite3://database.sqlite -path ./db/migrations up
migrate help # for more info

Authors