Update Schema Drops tables 0.9.6
Status: Beta
Brought to you by:
dbradby
Is the Update schema meant to drop the tables before
recreating them? I understood update schema to mean it
made incremental changes to the schema without
DELETING the data.
Evidently not.
The log information from runnign the Update Schema
buttons is as follows.
drop table changetype
drop table changeevent
create table changetype (changeTypeId INTEGER NOT
NULL IDENTITY, name VARCHAR(255), code VARCHAR
(255), type VARCHAR(255), action VARCHAR(255))
create table changeevent (changeEventId INTEGER NOT
NULL IDENTITY, applicationId BIGINT, sequenceId
BIGINT)
not what i would have expected.
Michael
Logged In: NO
Yes, it would be really nice to have a REAL incremental
update.
I find this sort of behaviour useful too but it should be called
"Recreate schema" instead of update schema.