Add currency pegging.

This commit is contained in:
2020-06-10 21:15:09 +01:00
parent ae3d6a2502
commit 78db12603f
6 changed files with 4479 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,73 @@
/******************************************************************************
// 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 AddCurrencyPegging : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable("CurrenciesPegging", table => new
{
Id = table.Column<int>(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),
SourceCode = table.Column<string>(nullable: false),
DestinationCode = table.Column<string>(nullable: false), Ratio = table.Column<float>(nullable: false),
Start = table.Column<DateTime>(nullable: false), End = table.Column<DateTime>(nullable: true)
}, constraints: table =>
{
table.PrimaryKey("PK_CurrenciesPegging", x => x.Id);
table.ForeignKey("FK_CurrenciesPegging_Iso4217_DestinationCode", x => x.DestinationCode, "Iso4217",
"Code", onDelete: ReferentialAction.Cascade);
table.ForeignKey("FK_CurrenciesPegging_Iso4217_SourceCode", x => x.SourceCode, "Iso4217", "Code",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex("IX_CurrenciesPegging_DestinationCode", "CurrenciesPegging",
"DestinationCode");
migrationBuilder.CreateIndex("IX_CurrenciesPegging_End", "CurrenciesPegging", "End");
migrationBuilder.CreateIndex("IX_CurrenciesPegging_SourceCode", "CurrenciesPegging", "SourceCode");
migrationBuilder.CreateIndex("IX_CurrenciesPegging_Start", "CurrenciesPegging", "Start");
}
protected override void Down(MigrationBuilder migrationBuilder) =>
migrationBuilder.DropTable("CurrenciesPegging");
}
}

View File

@@ -497,6 +497,37 @@ namespace Marechai.Database.Migrations
b.ToTable("CurrenciesInflation");
});
modelBuilder.Entity("Marechai.Database.Models.CurrencyPegging", b =>
{
b.Property<int>("Id").ValueGeneratedOnAdd().HasColumnType("int");
b.Property<DateTime>("CreatedOn").ValueGeneratedOnAdd().HasColumnType("datetime(6)");
b.Property<string>("DestinationCode").IsRequired().HasColumnType("varchar(3) CHARACTER SET utf8mb4");
b.Property<DateTime?>("End").HasColumnType("datetime(6)");
b.Property<float>("Ratio").HasColumnType("float");
b.Property<string>("SourceCode").IsRequired().HasColumnType("varchar(3) CHARACTER SET utf8mb4");
b.Property<DateTime>("Start").HasColumnType("datetime(6)");
b.Property<DateTime>("UpdatedOn").ValueGeneratedOnAddOrUpdate().HasColumnType("datetime(6)");
b.HasKey("Id");
b.HasIndex("DestinationCode");
b.HasIndex("End");
b.HasIndex("SourceCode");
b.HasIndex("Start");
b.ToTable("CurrenciesPegging");
});
modelBuilder.Entity("Marechai.Database.Models.Document", b =>
{
b.Property<long>("Id").ValueGeneratedOnAdd().HasColumnType("bigint");
@@ -2479,6 +2510,15 @@ namespace Marechai.Database.Migrations
OnDelete(DeleteBehavior.Cascade).IsRequired();
});
modelBuilder.Entity("Marechai.Database.Models.CurrencyPegging", b =>
{
b.HasOne("Marechai.Database.Models.Iso4217", "Destination").WithMany().HasForeignKey("DestinationCode").
OnDelete(DeleteBehavior.Cascade).IsRequired();
b.HasOne("Marechai.Database.Models.Iso4217", "Source").WithMany().HasForeignKey("SourceCode").
OnDelete(DeleteBehavior.Cascade).IsRequired();
});
modelBuilder.Entity("Marechai.Database.Models.Document", b =>
{
b.HasOne("Marechai.Database.Models.Iso31661Numeric", "Country").WithMany("Documents").

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.ComponentModel.DataAnnotations;
namespace Marechai.Database.Models
{
public class CurrencyPegging : BaseModel<int>
{
[Required]
public virtual Iso4217 Source { get; set; }
[Required]
public virtual Iso4217 Destination { get; set; }
public float Ratio { get; set; }
[DataType(DataType.Date)]
public DateTime Start { get; set; }
[DataType(DataType.Date)]
public DateTime? End { get; set; }
}
}

View File

@@ -98,6 +98,7 @@ namespace Marechai.Database.Models
public virtual DbSet<Audit> Audit { get; set; }
public virtual DbSet<Iso4217> Iso4217 { get; set; }
public virtual DbSet<CurrencyInflation> CurrenciesInflation { get; set; }
public virtual DbSet<CurrencyPegging> CurrenciesPegging { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
@@ -1565,6 +1566,12 @@ namespace Marechai.Database.Models
{
entity.HasIndex(d => d.Year);
});
modelBuilder.Entity<CurrencyPegging>(entity =>
{
entity.HasIndex(d => d.Start);
entity.HasIndex(d => d.End);
});
}
}
}