dbmate icon indicating copy to clipboard operation
dbmate copied to clipboard

:rocket: A lightweight, framework-agnostic database migration tool.

Results 74 dbmate issues
Sort by recently updated
recently updated
newest added

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...

feature request

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...

feature request
blocked

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...

feature request

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...

blocked

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?...

feature request

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...

bug

Hi there, thank you for the tool, it is great. Is there any plan to support Oracle databases too? Carlo

feature request

Would be nice if I could specify which migration to run. E.g.: ``` dbmate migrate 20200213212633 dbmate down 20200213212633 ```

feature request

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...