91 Commits

Author SHA1 Message Date
Juan Sanchez
fbd200be15
Fix misspelling in README.md (#323) 2022-04-02 21:37:02 -04:00
Freek Wielstra
5cb7ab673d
Update README.md (#316) 2022-02-25 18:58:57 -05:00
Michael Fridman
f263417fda
readme: update installation indtructions 2022-01-29 22:36:31 -05:00
Woong Seok Kang
7fffa2db30
readme: add password parameter when connect to PostgreSQL (#299) 2022-01-17 22:28:15 -05:00
Michael Fridman
c8aa123e31
Adds support to apply migrations without versioning (#291) 2021-12-13 00:37:44 -05:00
Arul
fd1ba04fc8
Fix #216 added support for user with x509 enabled (#294)
Closes #216
2021-12-12 13:59:35 -05:00
Michael Fridman
665e3f33cd
Update readme and help command 2021-11-24 22:23:45 -05:00
Dongri Jin
7bc1756c61
Fix install command (#289) 2021-11-24 10:00:49 -05:00
Mike Fridman
6bef64ab8f Update readme 2021-10-24 15:16:17 -04:00
Mike Fridman
f24b19cca8 Update readme with mysql multiStatements 2021-10-11 16:09:35 -04:00
Michael Fridman
0e770f837f
Add goose logo (#274) 2021-09-04 11:56:16 -04:00
Michael Fridman
d15e25ab59
Update readme to clarify supoprted go version 2021-08-20 22:38:49 -04:00
Vladimir Stolyarov
3ffdd78efc
Embed support: add 'base' filesystem to discover migrations. (#244)
This needed to use go 1.16 'embed' feature.
By default, migrations discovered from os filesystem.
This can be changed using `SetBaseFS` method.
2021-08-19 09:21:29 -04:00
Floyd Jones
6631aae111
updating readme and create command for v3 (#265) 2021-08-08 11:48:12 -04:00
Mike Fridman
6d62d8314e Update Readme badges and install command 2021-08-04 09:30:43 -04:00
Michael Fridman
ff32c04cfd
Adopt Go modules as /v3 (#261) 2021-08-04 09:16:42 -04:00
Ilia Kondrashov
f3abc85fac allow to specify migrations table 2019-12-14 19:44:40 +02:00
Adam Pietrzycki
a67bdd09fb
Update README.md 2019-06-22 13:06:08 +01:00
Adam Pietrzycki
2669aa5968
Fixing broken link in README 2019-06-22 13:04:01 +01:00
Edvard
5975eda15e Add up-by-one to documentation 2019-05-28 11:22:27 +02:00
Aleksei Maslov
6896ffb1dd renamed sqlserver to mssql. 2019-05-15 13:25:09 +08:00
Aleksei Maslov
e11a96e0db prepared PR to pressly 2019-04-16 10:15:47 +08:00
Aleksei Maslov
ea2101beb3 added mssql support. 2019-04-12 17:25:30 +08:00
yoshiya0503
dcdfaa3d34 fix README (add reset command) 2019-03-28 16:52:47 +09:00
Vojtech Vitek
5cd6f8c9d0 Make this all work 2019-03-06 01:20:06 -05:00
Vojtech Vitek
0f13f74517 README: Remove obsolete log lines
Fixes #141
2019-03-04 19:38:33 -05:00
Vojtech Vitek
3c2a65ec01
Link to "versioning problem" 2018-12-12 11:31:43 -05:00
1vn
7cae30c634 not -> no 2018-11-13 11:37:44 -05:00
1vn
750e477310 update readme 2018-11-13 11:21:31 -05:00
1vn
5da23b54c9 goose lite 2018-11-12 15:32:52 -05:00
1vn
90f0cf504b update documentation 2018-11-06 16:54:31 -05:00
Simon Wikstrand
35a69f048d
Added documentation, and support in the cmd binary for tidb 2017-12-04 18:51:48 +01:00
Yehor Smoliakov
738443a12b Added a parseTime parameter to the MySQL status command 2017-10-31 20:16:50 +02:00
Vojtech Vitek
c579bcf2f9 Merge branch 'master' into optional-migrations 2017-06-20 15:04:58 -04:00
Vojtech Vitek
7e6b95b4d0 Examples structure refactor 2017-06-20 12:53:59 -04:00
Vojtech Vitek
11a1b26516 Create migration file with next version number
Fixes #25
2017-06-19 17:23:29 -04:00
Nicholas Duffy
22099ce50b Fix dbversion to version
The docs and usage state the command for checking the
version of the database is `dbversion` but it is just `version`.
2017-05-07 15:38:23 -06:00
Nicholas Duffy
a515c0b5b9 Update NO TRANSACTIONS to NO TRANSACTION 2017-05-06 13:39:52 -06:00
Nicholas Duffy
fa8806ecfd Add support for optional migrations.
See the discussion in https://github.com/pressly/goose/issues/7.
Credit goes to @dkotson for his gist here: https://github.com/pressly/goose/issues/7#issuecomment-241613482

I've just added that patch to this repository and change the transaction comment to `-- +goose NO TRANSACTIONS`.

- Checks the migration file for `-- +goose NO TRANSACTIONS`
- Based upon that line, either runs the up/down SQL with or without transactions
- Add test to check for transactions
- Update README

Closes #7.
2017-05-06 09:41:44 -06:00
Nicholas Duffy
3c5ec4e555 Update README
- Add list of drivers
- Update command list to reference `up-to` and `down-to`
- Add `up-to` and `down-to` examples
- Update usage output

Closes #37.
2017-05-06 08:43:15 -06:00
Nicholas Duffy
1d402b32ff Add Redshift driver support
Redshift can be accessed and `up`/`down` SQL executed with the `pq`
library by default, however, the `createVersionTableSql` of the `PostgresDialect`
is not compatible with Redshift due to the `serial` datatype and `now()` default on.

This PR creates a new Redshift dialect. The dialect still uses the `pq` library and
only updates the SQL in `createVersionTableSql` to be compatible with Redshift.

Closes #32.
2017-05-03 17:41:20 -06:00
mmatczuk
1d358f1467 MySQL status note 2017-03-24 13:11:15 +01:00
Vojtech Vitek
e591daea14 Fix example 2017-03-13 12:08:01 -04:00
Vojtech Vitek
1a4b9210ea Update Goals of this fork 2017-03-13 12:04:18 -04:00
Vojtech Vitek (V-Teq)
d6e8fe0292 Revert "Fix README example to have DB string"
This reverts commit c63bd171be103d606a2f8125710c1d4fb6e83086.

Ref. #12
2016-11-06 13:45:28 -05:00
Trevor Rosen
c63bd171be Fix README example to have DB string 2016-10-05 14:39:07 -05:00
Josh Fyne
3a4a94cc90 Fixes install instructions 2016-06-30 10:33:02 -04:00
Josh Fyne
ba86be6db6 Readme fix 2016-06-29 14:29:16 -04:00
Josh Fyne
3523b17cdc Remove misleading create documentation 2016-06-29 12:30:47 -04:00
Vojtech Vitek (V-Teq)
ae64375f29 Remove go-sqlite3 dependency from goose pkg 2016-03-07 15:55:05 -05:00