Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 907d8cd commit a7fa9ebCopy full SHA for a7fa9eb
driver/crate/README.md
@@ -0,0 +1,15 @@
1
+# Crate driver
2
+
3
+This is a driver for the [Crate](https://crate.io) database. It is based on the Crate
4
+sql driver by [herenow](https://github.com/herenow/go-crate).
5
6
+This driver does not use transactions! This is not a limitation of the driver, but a
7
+limitation of Crate. So handle situations with failed migrations with care!
8
9
+## Usage
10
11
+```bash
12
+migrate -url http://host:port -path ./db/migrations create add_field_to_table
13
+migrate -url http://host:port -path ./db/migrations up
14
+migrate help # for more info
15
+```
0 commit comments