diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-09-17 12:01:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-09-17 12:04:03 +0200 |
commit | 649c1abcceab97c8ece976cc30bab0e3aaa3be54 (patch) | |
tree | e33b635509736d054445f92eebb73fff7e8cc5e9 /evolution/drop-column | |
parent | 4c893bdef4b57193438e57b09627560e53f3e6d8 (diff) |
Add schema name to changelog
Diffstat (limited to 'evolution/drop-column')
-rw-r--r-- | evolution/drop-column/driver.cxx | 1 | ||||
-rw-r--r-- | evolution/drop-column/makefile | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/evolution/drop-column/driver.cxx b/evolution/drop-column/driver.cxx index 6e72f7d..60eba06 100644 --- a/evolution/drop-column/driver.cxx +++ b/evolution/drop-column/driver.cxx @@ -47,7 +47,6 @@ main (int argc, char* argv[]) { transaction t (db->begin ()); schema_catalog::drop_schema (*db); - schema_catalog::drop_schema (*db, "2"); schema_catalog::create_schema (*db, "", false); schema_catalog::migrate_schema (*db, 2); t.commit (); diff --git a/evolution/drop-column/makefile b/evolution/drop-column/makefile index f22097e..8f8d56d 100644 --- a/evolution/drop-column/makefile +++ b/evolution/drop-column/makefile @@ -41,7 +41,7 @@ $(gen) $(dist): odb_common_options = --generate-query \ $(gen): odb_common_options += --database $(db_id) $(gen1) $(dist): export odb_options1 = $(odb_common_options) --init-changelog $(gen2) $(dist): export odb_options2 = $(odb_common_options) --omit-create \ ---schema-name 2 --suppress-migration +--suppress-migration $(gen3) $(dist): export odb_options3 = $(odb_common_options) --omit-create $(gen1): odb_options += $(odb_options1) --changelog $(out_base)/model.xml $(gen2): odb_options += $(odb_options2) --changelog $(out_base)/model.xml |