You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.
7
+
DbUp is a .NET library that helps you to deploy changes to relational databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.
8
+
This Provider is for deploying to Firebird databases.
8
9
9
10
## Getting Help
10
11
To learn more about DbUp check out the [documentation](https://dbup.readthedocs.io/en/latest/)
@@ -13,4 +14,24 @@ Please only log issue related to Firebird support in this repo. For cross cuttin
13
14
14
15
# Contributing
15
16
16
-
See the [readme in our main repo](https://github.com/DbUp/DbUp/blob/master/README.md) for how to get started and contribute.
17
+
See the [readme in our main repo](https://github.com/DbUp/DbUp/blob/master/README.md) for how to get started and contribute.
18
+
19
+
# Quirks concerning the Firebird implementation
20
+
21
+
The Journal Table for Firebird is called `"schemaversions"` i.e. with quotes. This can be confusing since other providers do not use quotes.
22
+
23
+
It will not be fixed because of backwards compatibility. You can check the content of the table by using
24
+
25
+
```sql
26
+
select*from"schemaversions"
27
+
```
28
+
29
+
In a new project you can also choose another name for the JournalTable instead like this:
0 commit comments