diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-08 11:13:52 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-10 18:46:47 +0200 |
commit | acd66db1ce8aa960b34710857ce990dd048cd3ae (patch) | |
tree | 05a355b8b2c0a9c40a54ab20d529188ee36ec34a /evolution/makefile | |
parent | 0429c7b008594a874696f91c29b17ae4ee40efff (diff) |
Generate add/drop foreign key migration statements
Also add the --fkeys-deferrable-mode option. General schemas generation
rework.
Diffstat (limited to 'evolution/makefile')
-rw-r--r-- | evolution/makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/evolution/makefile b/evolution/makefile index 6c38b0f..867fd3e 100644 --- a/evolution/makefile +++ b/evolution/makefile @@ -4,14 +4,16 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make -tests := \ -add-table \ -drop-table \ -add-column \ -drop-column \ -alter-column \ -add-index \ -drop-index \ +tests := \ +add-table \ +drop-table \ +add-column \ +drop-column \ +alter-column \ +add-foreign-key \ +drop-foreign-key \ +add-index \ +drop-index \ template default := $(out_base)/ |