-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solves #68
- Loading branch information
Showing
3 changed files
with
41 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# grate | ||
|
||
grate is a SQL scripts migration runner, using plain, old SQL for migrations. No meta-language, no code, no config, | ||
no EF migrations. If gives you full flexibility, and full control of your migrations, and lets you use | ||
all the fancy features of you particular database system. You are not constrained to any lowest common | ||
feature set of all supported databases. | ||
|
||
## Minimal example | ||
The only required argument to pass to grate is a **connection string** to tell it where to find your database. | ||
It will deploy to that database, looking for sql scripts in the current directory. | ||
|
||
``` | ||
grate --connectionstring="Server=(localdb)\MSSQLLocalDB;Integrated Security=true;Database=grate_test" | ||
``` | ||
|
||
for more configuration options, see the [documentation](https://erikbra.github.io/grate/configuration-options/). | ||
|
||
|
||
|
||
## grate supports the following DMBS's | ||
|
||
* Microsoft SQL server | ||
* PostgreSQL | ||
* MariaDB/MySQL | ||
* Sqlite | ||
* _(Oracle support is in the works)_ | ||
|
||
Full documentation can be found at [https://erikbra.github.io/grate/](https://erikbra.github.io/grate/). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters