Beispiel #1
0
 private static bool AddFiles(LocalDatabase localDatabase)
 {
     try
     {
         localDatabase.CreateFilesTable();
         localDatabase.AddFileIdColumns();
         return(true);
     }
     catch (Exception exception)
     {
         Logger.Exception(exception);
         return(false);
     }
 }