When renaming columns and tables in the same build, set the properties like: FDORA_TABLE_RENAMES - schema.old_table = schema.new_table
FDORA_COLUMN_RENAMES - schema.old_table.old_column = schema.new_table.new_column
As of release 5.5.0.1, you can specify renames without Schema prefixes, provided that you also leave the project property FDORA_SCHEMA_NAME blank. In this case, the schema will be set to the value of FDORA_USER and this value will be used for all renames.
FDORA_TABLE_RENAMES - old_table = new_table
FDORA_COLUMN_RENAMES - old_table.old_column = new_table.new_column
|