A command line utility for tracking time written in Go
TODO
Migrations are handled using golang-migrate. You will need to install the command line utility migrate to run the necessary commands.
- New migration:
make newmigration name=<migration_name>
- Replace<migration_name>
with a brief description of the changes. A good migration name would be something likeadd_active_column_to_user_table
. - Migrate up:
make migrateup
- Runs ALL up migrations. - Migrate down:
make migratedown
- Runs ALL down migrations.
go test -v ./...