Add software families.

This commit is contained in:
2020-06-11 18:51:58 +01:00
parent b064b2c701
commit 41daba0aa5
10 changed files with 9909 additions and 2042 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,140 @@
/******************************************************************************
// 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;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
namespace Marechai.Database.Migrations
{
public partial class AddSoftwareFamily : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable("SoftwareFamilies", table => new
{
Id = table.Column<ulong>(nullable: false).
Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
CreatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.IdentityColumn),
UpdatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.ComputedColumn),
Name = table.Column<string>(nullable: false), Introduced = table.Column<DateTime>(nullable: true),
ParentId = table.Column<ulong>(nullable: true)
}, constraints: table =>
{
table.PrimaryKey("PK_SoftwareFamilies", x => x.Id);
table.ForeignKey("FK_SoftwareFamilies_SoftwareFamilies_ParentId", x => x.ParentId, "SoftwareFamilies",
"Id", onDelete: ReferentialAction.SetNull);
});
migrationBuilder.CreateTable("CompaniesBySoftwareFamily", table => new
{
Id = table.Column<ulong>(nullable: false).
Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
CreatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.IdentityColumn),
UpdatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.ComputedColumn),
RoleId = table.Column<string>(nullable: false), CompanyId = table.Column<int>(nullable: false),
SoftwareFamilyId = table.Column<ulong>(nullable: false)
}, constraints: table =>
{
table.PrimaryKey("PK_CompaniesBySoftwareFamily", x => x.Id);
table.ForeignKey("FK_CompaniesBySoftwareFamily_companies_CompanyId", x => x.CompanyId, "companies",
"id", onDelete: ReferentialAction.Cascade);
table.ForeignKey("FK_CompaniesBySoftwareFamily_DocumentRoles_RoleId", x => x.RoleId, "DocumentRoles",
"Id", onDelete: ReferentialAction.Cascade);
table.ForeignKey("FK_CompaniesBySoftwareFamily_SoftwareFamilies_SoftwareFamilyId",
x => x.SoftwareFamilyId, "SoftwareFamilies", "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable("PeopleBySoftwareFamily", table => new
{
Id = table.Column<ulong>(nullable: false).
Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
CreatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.IdentityColumn),
UpdatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.ComputedColumn),
RoleId = table.Column<string>(nullable: false), PersonId = table.Column<int>(nullable: false),
SoftwareFamilyId = table.Column<ulong>(nullable: false)
}, constraints: table =>
{
table.PrimaryKey("PK_PeopleBySoftwareFamily", x => x.Id);
table.ForeignKey("FK_PeopleBySoftwareFamily_People_PersonId", x => x.PersonId, "People", "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey("FK_PeopleBySoftwareFamily_DocumentRoles_RoleId", x => x.RoleId, "DocumentRoles", "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey("FK_PeopleBySoftwareFamily_SoftwareFamilies_SoftwareFamilyId", x => x.SoftwareFamilyId,
"SoftwareFamilies", "Id", onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex("IX_CompaniesBySoftwareFamily_CompanyId", "CompaniesBySoftwareFamily",
"CompanyId");
migrationBuilder.CreateIndex("IX_CompaniesBySoftwareFamily_RoleId", "CompaniesBySoftwareFamily", "RoleId");
migrationBuilder.CreateIndex("IX_CompaniesBySoftwareFamily_SoftwareFamilyId", "CompaniesBySoftwareFamily",
"SoftwareFamilyId");
migrationBuilder.CreateIndex("IX_PeopleBySoftwareFamily_PersonId", "PeopleBySoftwareFamily", "PersonId");
migrationBuilder.CreateIndex("IX_PeopleBySoftwareFamily_RoleId", "PeopleBySoftwareFamily", "RoleId");
migrationBuilder.CreateIndex("IX_PeopleBySoftwareFamily_SoftwareFamilyId", "PeopleBySoftwareFamily",
"SoftwareFamilyId");
migrationBuilder.CreateIndex("IX_SoftwareFamilies_Introduced", "SoftwareFamilies", "Introduced");
migrationBuilder.CreateIndex("IX_SoftwareFamilies_Name", "SoftwareFamilies", "Name");
migrationBuilder.CreateIndex("IX_SoftwareFamilies_ParentId", "SoftwareFamilies", "ParentId");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable("CompaniesBySoftwareFamily");
migrationBuilder.DropTable("PeopleBySoftwareFamily");
migrationBuilder.DropTable("SoftwareFamilies");
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,39 @@
/******************************************************************************
// 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 CompaniesBySoftwareFamily : BaseModel<ulong>
{
[Required]
public virtual DocumentRole Role { get; set; }
[Required]
public virtual Company Company { get; set; }
[Required]
public virtual SoftwareFamily SoftwareFamily { get; set; }
}
}

View File

@@ -84,5 +84,6 @@ namespace Marechai.Database.Models
public virtual ICollection<PeopleByCompany> People { get; set; }
public virtual CompanyLogo LastLogo => Logos?.OrderByDescending(l => l.Year).FirstOrDefault();
public virtual DocumentCompany DocumentCompany { get; set; }
public virtual ICollection<CompaniesBySoftwareFamily> SoftwareFamilies { get; set; }
}
}

View File

@@ -119,6 +119,7 @@ namespace Marechai.Database.Models
public virtual DbSet<MediaDumpTrackImage> MediaDumpTrackImages { get; set; }
public virtual DbSet<MediaFile> MediaFiles { get; set; }
public virtual DbSet<Dump> Dumps { get; set; }
public virtual DbSet<SoftwareFamily> SoftwareFamilies { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
@@ -1809,6 +1810,26 @@ namespace Marechai.Database.Models
entity.HasOne(e => e.Media).WithMany(e => e.Dumps).OnDelete(DeleteBehavior.Cascade);
entity.HasOne(e => e.MediaDump).WithMany(e => e.Dumps).OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity<SoftwareFamily>(entity =>
{
entity.HasIndex(e => e.Name);
entity.HasIndex(e => e.Introduced);
entity.HasOne(e => e.Parent).WithMany(e => e.Children).OnDelete(DeleteBehavior.SetNull);
});
modelBuilder.Entity<CompaniesBySoftwareFamily>(entity =>
{
entity.HasOne(d => d.Company).WithMany(p => p.SoftwareFamilies).OnDelete(DeleteBehavior.Cascade);
entity.HasOne(d => d.SoftwareFamily).WithMany(p => p.Companies).OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity<PeopleBySoftwareFamily>(entity =>
{
entity.HasOne(d => d.Person).WithMany(p => p.SoftwareFamilies).OnDelete(DeleteBehavior.Cascade);
entity.HasOne(d => d.SoftwareFamily).WithMany(p => p.People).OnDelete(DeleteBehavior.Cascade);
});
}
}
}

View File

@@ -0,0 +1,39 @@
/******************************************************************************
// 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 PeopleBySoftwareFamily : BaseModel<ulong>
{
[Required]
public virtual DocumentRole Role { get; set; }
[Required]
public virtual Person Person { get; set; }
[Required]
public virtual SoftwareFamily SoftwareFamily { get; set; }
}
}

View File

@@ -57,8 +57,9 @@ namespace Marechai.Database.Models
[NotMapped, DisplayName("Name")]
public string FullName => DisplayName ?? Alias ?? $"{Name} {Surname}";
public short? CountryOfBirthId { get; set; }
public virtual ICollection<PeopleByCompany> Companies { get; set; }
public virtual DocumentPerson DocumentPerson { get; set; }
public short? CountryOfBirthId { get; set; }
public virtual ICollection<PeopleByCompany> Companies { get; set; }
public virtual DocumentPerson DocumentPerson { get; set; }
public virtual ICollection<PeopleBySoftwareFamily> SoftwareFamilies { get; set; }
}
}

View File

@@ -0,0 +1,43 @@
/******************************************************************************
// 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;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Marechai.Database.Models
{
public class SoftwareFamily : BaseModel<ulong>
{
[Required]
public string Name { get; set; }
public DateTime? Introduced { get; set; }
public virtual SoftwareFamily Parent { get; set; }
public virtual ICollection<SoftwareFamily> Children { get; set; }
public virtual ICollection<CompaniesBySoftwareFamily> Companies { get; set; }
public virtual ICollection<PeopleBySoftwareFamily> People { get; set; }
}
}