Actions
task #6535
closedMetaDataPropertyName from number to string in DB
Start date:
Due date:
% Done:
50%
Estimated time:
Severity:
normal
Description
MetaDataPropertyName is stored as number in CdmMetaData. We use string for TermType at other places and should do so here, too. This allows reordering the enum.
Related issues
Updated by Andreas Müller almost 6 years ago
- Status changed from New to In Progress
Updated by Andreas Müller almost 6 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 50
Applied in changeset cdmlib|cfe723e5bc6869c8bc0416308c54bd5caad20d2a.
Updated by Andreas Müller almost 6 years ago
- Related to task #6699: Delete term version from CdmMetaData added
Updated by Andreas Müller almost 6 years ago
Update script for incorrect update
UPDATE CdmMetaData SET PropertyName = 'TERM_VERSION' WHERE PropertyNameOld = 0;
UPDATE CdmMetaData SET PropertyName = 'SCHEMA_VERSION' WHERE PropertyNameOld = 1;
UPDATE CdmMetaData SET PropertyName = 'CREATED' WHERE PropertyNameOld = 2;
ALTER TABLE CdmMetaData DROP COLUMN PropertyNameOld ;
Updated by Andreas Müller almost 6 years ago
- Status changed from Resolved to Closed
Actions