14 lines
411 B
Plaintext
14 lines
411 B
Plaintext
ALTER TABLE `customer`
|
|
ADD COLUMN `NationalitaetValueListEntryOid`
|
|
BIGINT(19) NULL DEFAULT NULL COMMENT '' AFTER `IsMigrant`;
|
|
|
|
|
|
ALTER TABLE `person`
|
|
ADD COLUMN `NationalitaetValueListEntryOid`
|
|
BIGINT(19) NULL DEFAULT NULL COMMENT '' AFTER `IsMigrant`;
|
|
|
|
|
|
ALTER TABLE `customer`
|
|
ADD COLUMN `AufenthaltsStatusValueListEntryOid`
|
|
BIGINT(19) NULL DEFAULT NULL COMMENT '' AFTER `NationalitaetValueListEntryOid`;
|