Add media dump.

This commit is contained in:
2020-06-11 03:10:01 +01:00
parent e31a8c4480
commit ccba6adf55
8 changed files with 5068 additions and 1 deletions

View File

@@ -112,6 +112,7 @@ namespace Marechai.Database.Models
public virtual DbSet<LogicalPartition> LogicalPartitions { get; set; }
public virtual DbSet<FilesystemsByLogicalPartition> FilesystemsByLogicalPartition { get; set; }
public virtual DbSet<Media> Media { get; set; }
public virtual DbSet<MediaDump> MediaDumps { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
@@ -1679,6 +1680,14 @@ namespace Marechai.Database.Models
entity.HasOne(d => d.Media).WithMany(p => p.LogicalPartitions).OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity<MediaDump>(entity =>
{
entity.HasOne(d => d.Media).WithMany(p => p.Dumps).OnDelete(DeleteBehavior.Cascade);
entity.HasIndex(e => e.Status);
entity.HasIndex(e => e.Format);
});
}
}
}

View File

@@ -57,5 +57,6 @@ namespace Marechai.Database.Models
public StorageInterface? StorageInterface { get; set; }
public virtual ICollection<LogicalPartitionsByMedia> LogicalPartitions { get; set; }
public virtual ICollection<MediaDump> Dumps { get; set; }
}
}

View File

@@ -0,0 +1,37 @@
/******************************************************************************
// MARECHAI: Master repository of computing history artifacts information
// ----------------------------------------------------------------------------
//
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2003-2020 Natalia Portillo
*******************************************************************************/
using System.ComponentModel.DataAnnotations;
namespace Marechai.Database.Models
{
public class MediaDump : BaseModel<ulong>
{
[Required]
public virtual Media Media { get; set; }
public string Format { get; set; }
public DumpStatus Status { get; set; }
}
}