forked from lbitonti/liquibase-hana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
49 lines (38 loc) · 1.59 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Liquibase extension that provides support for SAP Hana DB.
Initial Hana DB support is currently implemented in the 2.0.x and 3.0.x branches. The master branch at the moment follows 3.4.x and it's built against version 3.4.2 of Liquibase.
The original Liquibase distribution is available at: https://github.com/liquibase/liquibase/
The official liquibase site is: http://www.liquibase.org
Released under the Apache 2.0 License with no guarantee whatsoever.
This is currently used in some projects I have been involved with. Branch 3.0.x has definitely undergone more testing at this point, but 2.0.x is still used in production with good results.
If you give it a go, I'd like to know how it worked for you.
It's available from Maven Central. If you are using maven, add the following dependency:
<dependency>
<groupId>com.github.lbitonti</groupId>
<artifactId>liquibase-hana</artifactId>
<version>3.1</version>
</dependency>
The following generators are currently implemented (please keep in mind Hana limitations for some operations while using them):
AddAutoIncrementGenerator
AddColumnGenerator
AddDefaultValueGenerator
AddForeignKeyConstraintGenerator
AddPrimaryKeyGenerator
AddUniqueConstraintGenerator
AlterSequenceGenerator
CreateIndexGenerator
CreateSequenceGenerator
CreateTableGenerator
CreateViewGenerator
DropColumnGenerator
DropForeignKeyConstraintGenerator
DropIndexGenerator
DropPrimaryKeyGenerator
DropSequenceGenerator
DropTableGenerator
DropUniqueConstraintGenerator
DropViewGenerator
GetViewDefinitionGenerator
RenameColumnGenerator
RenameTableGenerator
RenameViewGenerator
SetNullableGenerator