mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +01:00
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 95c06ad8-377d-4faa-8d07-06300b1c81ec
12 lines
268 B
AL
12 lines
268 B
AL
codeunit 50211 "Install My Extension"
|
|
{
|
|
Subtype = Install;
|
|
|
|
trigger OnInstallAppPerCompany()
|
|
begin
|
|
// No DataVersion() guard: a reinstall duplicates seed rows.
|
|
SeedDefaultRows();
|
|
end;
|
|
|
|
local procedure SeedDefaultRows() begin end;
|
|
}
|