- Add vendor dependencies for better macos homebrew support
- Referencing #42
- Referencing Homebrew/homebrew-core#14724"
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
Add vendoring.
- Add vendor dependencies for better macos homebrew support
- Referencing #42
- Referencing Homebrew/homebrew-core#14724
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
Revert "Add vendoring. (glide)"
This reverts commit 8e3eb6282c955f14d493d6f084b3cf4fb4ad7b2b.
vendoring: removed vendor/; moved Gopkg.toml to topdir; removed Gopkg.lock
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
travis: use golang/dep for dependency resolving; referencing #51
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
Gopkg.toml: remove examples
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
Gopkg.toml: goose doesn't need to pull itself :)
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
Gopkg.toml: should be able to upgrade minor versions
Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>
The glob `/**/*.sql` was looking for files in subdirectories
only and not finding SQL files in the root directory.
Now making two globs and combining the slices.
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.
I like to group my migrations by logical subdirectories.
```
[nicholasduffy@duffn:~/go/src/github.com/pressly/goose/migrations on sql-subdirectories]
% tree ✭
.
├── group1
│ └── 20170506073854_table1_create_table.sql
└── group2
└── 20170506073920_table2_create_table.sql
2 directories, 2 files
```
It's easy to run migrations by groups if necessary. However, I'd like the
ability to run all migrations in all subdirectories at the same time. This
PR adds discovery of all SQL files in subdirectories within the `-dir`
directory.
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.