dbmate
dbmate copied to clipboard
:rocket: A lightweight, framework-agnostic database migration tool.
Hi, great project, it ticks off all of my requirements for a light weight migrations tool, but the following: **The table of applied migrations should contain a column for the...
Is there a way to enable logging? I'd like to get an output of the migration. For example with the following, I'd like to look in a log and see...
Like other database migration tools, `dbmate` only supports numerical version numbers. I would like to be able to version my migrations semantically, using tags like `1.0.0` for example. Golang libraries...
Hi, I have the following migration : ```sql -- migrate:up COPY clients.business_types (id, label) FROM stdin delimiter ','; ASS,Association EARL,Entreprise agricole à responsabilité limitée \. -- migrate:down ``` I cant...
Is it possible (or, could it be made possible) to 1) rollback more than one step at a time, and 2) (ideally) rollback to a specific named or timestamped migration?...
I encountered a strange bug: I had a space in front of `-- migrate:down`, and the migration was getting applied, successfully, except that it wasn't being run (silently failing). This...
Hi there, thank you for the tool, it is great. Is there any plan to support Oracle databases too? Carlo
Would be nice if I could specify which migration to run. E.g.: ``` dbmate migrate 20200213212633 dbmate down 20200213212633 ```
I've been using dbmate with a node project. It works great but it would be nice if I could integrate it with the rest of my projects dependencies. While NPM...