on ‎2024 Jun 12 9:34 AM
Hello together,
how is it possible to change the database structure from an existing CAP project (change data types, add or remove fields).
E.g.:
Existing entity has firstname and lastname.
entity BusinessPartner {
key ID: UUID;
firstname: String(100);
lastname: String(100);
}Now the requirement is to merge these fields.
entity BusinessPartner {
key ID: UUID;
name: String(200);
}How is CAP supporting these task or what would be the best approach? In ABAP world we have database utility (transaction SE14) has CAP something similar?
Thanks and best regards,
Julian
Request clarification before answering.
Hi,
we support automatic schema evolution for all our databases, please have a look at our documentation.
BR
Patrice
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 13 | |
| 7 | |
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.