Bug 32191: Add sample output for copying and pasting to skeleton.pl
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 14 Nov 2022 15:01:10 +0000 (12:01 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 14 Nov 2022 18:08:10 +0000 (15:08 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
installer/data/mysql/atomicupdate/skeleton.pl

index 72c36af..c253039 100755 (executable)
@@ -9,6 +9,16 @@ return {
         # Do you stuffs here
         $dbh->do(q{});
         # Print useful stuff here
-        say $out "Update is going well so far";
+        # tables
+        say $out "Added new table 'XXX'";
+        say $out "Added column 'XXX.YYY'";
+        # sysprefs
+        say $out "Added new system preference 'XXX'";
+        say $out "Updated system preference 'XXX'";
+        say $out "Removed system preference 'XXX'";
+        # permissions
+        say $out "Added new permission 'XXX'";
+        # letters
+        say $out "Added new letter 'XXX' (TRANSPORT)";
     },
 };