merged infrastructure and persistence projects

This commit is contained in:
cuqmbr 2023-11-15 18:59:57 +02:00
parent 2936cb59a4
commit 0d316be670
Signed by: cuqmbr
GPG Key ID: 2D72ED98B6CB200F
32 changed files with 350 additions and 213 deletions

View File

@ -0,0 +1,71 @@
using System.Reflection;
using AutobusApi.Application.Common.Interfaces;
using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
namespace AutoubsApi.Infrastructure.Data;
public class ApplicationDbContext : DbContext, IApplicationDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { }
public DbSet<Country> Countries { get => Set<Country>(); }
public DbSet<Region> Regions { get => Set<Region>(); }
public DbSet<City> Cities { get => Set<City>(); }
public DbSet<Address> Addresses { get => Set<Address>(); }
public DbSet<RouteAddress> RouteAddresses { get => Set<RouteAddress>(); }
public DbSet<Route> Routes { get => Set<Route>(); }
public DbSet<RouteAddressDetails> RouteAddressDetails { get => Set<RouteAddressDetails>(); }
public DbSet<VehicleEnrollment> VehicleEnrollments { get => Set<VehicleEnrollment>(); }
public DbSet<Vehicle> Vehicles { get => Set<Vehicle>(); }
public DbSet<Bus> Buses { get => Set<Bus>(); }
public DbSet<Aircraft> Aircraft { get => Set<Aircraft>(); }
public DbSet<Train> Trains { get => Set<Train>(); }
public DbSet<TrainCarriage> TrainCarriages { get => Set<TrainCarriage>(); }
public DbSet<Carriage> Carriages { get => Set<Carriage>(); }
public DbSet<Company> Companies { get => Set<Company>(); }
public DbSet<Employee> Employees { get => Set<Employee>(); }
public DbSet<EmployeeDocument> EmployeeDocuments { get => Set<EmployeeDocument>(); }
public DbSet<VehicleEnrollmentEmployee> vehicleEnrollmentEmployees { get => Set<VehicleEnrollmentEmployee>(); }
public DbSet<User> ApplicationUsers { get => Set<User>(); }
public DbSet<TicketGroup> TicketGroups { get => Set<TicketGroup>(); }
public DbSet<Ticket> Tickets { get => Set<Ticket>(); }
public DbSet<TicketDocument> TicketDocuments { get => Set<TicketDocument>(); }
public DbSet<Review> Reviews { get => Set<Review>(); }
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
builder.HasPostgresExtension("postgis");
builder.HasDefaultSchema("domain");
builder.ApplyConfigurationsFromAssembly(
Assembly.GetExecutingAssembly(),
t => t.Namespace == "AutobusApi.Infrastructure.Data.Configurations"
);
}
}

View File

@ -4,7 +4,7 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using NetTopologySuite.Geometries;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class AddressConfiguration : EntityBaseConfiguration<Address>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class AircraftConfiguration : EntityBaseConfiguration<Aircraft>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class BusConfiguration : EntityBaseConfiguration<Bus>
{

View File

@ -3,7 +3,7 @@ using AutobusApi.Domain.Enums;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class CarriageConfiguration : EntityBaseConfiguration<Carriage>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class CityConfiguration : EntityBaseConfiguration<City>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class CompanyConfiguration : EntityBaseConfiguration<Company>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class CountryConfiguration : EntityBaseConfiguration<Country>
{

View File

@ -3,7 +3,7 @@ using AutobusApi.Domain.Enums;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class EmployeeConfiguration : EntityBaseConfiguration<Employee>
{
@ -49,6 +49,16 @@ public class EmployeeConfiguration : EntityBaseConfiguration<Employee>
.HasColumnType("date")
.IsRequired();
builder
.Property(e => e.IdentityId)
.HasColumnName("identity_id")
.HasColumnType("int")
.IsRequired();
builder
.HasIndex(e => e.IdentityId)
.IsUnique();
builder
.Property(e => e.EmployerCompanyId)
.HasColumnName("employer_company_id")

View File

@ -3,7 +3,7 @@ using AutobusApi.Domain.Enums;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class EmployeeDocumentConfiguration : EntityBaseConfiguration<EmployeeDocument>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Common;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class EntityBaseConfiguration<TEntity> : IEntityTypeConfiguration<TEntity>
where TEntity : EntityBase

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class RegionConfiguration : EntityBaseConfiguration<Region>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class ReviewConfiguration : EntityBaseConfiguration<Review>
{
@ -29,7 +29,7 @@ public class ReviewConfiguration : EntityBaseConfiguration<Review>
builder
.Property(r => r.PostDateTimeUtc)
.HasColumnName("post_timestamp_utc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.IsRequired();
builder

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class RouteAddressConfiguration : EntityBaseConfiguration<RouteAddress>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class RouteAddressDeatilsConfiguration : EntityBaseConfiguration<RouteAddressDetails>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class RouteConfiguration : EntityBaseConfiguration<Route>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class TicketConfiguration : EntityBaseConfiguration<Ticket>
{

View File

@ -3,7 +3,7 @@ using AutobusApi.Domain.Enums;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class TicketDocumentConfiguration : EntityBaseConfiguration<TicketDocument>
{

View File

@ -3,7 +3,7 @@ using AutobusApi.Domain.Enums;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class TicketGroupConfiguration : EntityBaseConfiguration<TicketGroup>
{
@ -76,7 +76,7 @@ public class TicketGroupConfiguration : EntityBaseConfiguration<TicketGroup>
builder
.Property(tg => tg.PurchaseDateTimeUtc)
.HasColumnName("purchase_timestamp_utc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.IsRequired();
builder

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class TrainCarriageConfiguration : EntityBaseConfiguration<TrainCarriage>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class TrainConfiguration : EntityBaseConfiguration<Train>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class UserConfiguration : EntityBaseConfiguration<User>
{
@ -12,7 +12,17 @@ public class UserConfiguration : EntityBaseConfiguration<User>
builder
.ToTable("users")
.HasKey(e => e.Id);
.HasKey(u => u.Id);
builder
.Property(u => u.IdentityId)
.HasColumnName("identity_id")
.HasColumnType("int")
.IsRequired();
builder
.HasIndex(u => u.IdentityId)
.IsUnique();
builder
.HasMany(u => u.Reviews)

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class VehicleConfiguration : EntityBaseConfiguration<Vehicle>
{

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class VehicleEnrollmentConfiguration : EntityBaseConfiguration<VehicleEnrollment>
{
@ -17,7 +17,7 @@ public class VehicleEnrollmentConfiguration : EntityBaseConfiguration<VehicleEnr
builder
.Property(ve => ve.DepartureDateTimeUtc)
.HasColumnName("departure_timestamp_utc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.IsRequired();
builder

View File

@ -2,7 +2,7 @@ using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace AutobusApi.Persistence.Contexts.Configurations;
namespace AutobusApi.Infrastructure.Data.Configurations;
public class VehicleEnrollmentEmployeeConfiguration : EntityBaseConfiguration<VehicleEnrollmentEmployee>
{

View File

@ -1,7 +1,7 @@
using AutobusApi.Domain.IEntities;
using NetTopologySuite.Geometries;
namespace AutobusApi.Persistence.Entities;
namespace AutobusApi.Infrastructure.Data.Entities;
public class Coordinates : ICoordinates
{

View File

@ -1,6 +1,6 @@
// <auto-generated />
using System;
using AutoubsApi.Persistence.Contexts;
using AutoubsApi.Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
@ -10,17 +10,18 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace AutobusApi.Persistence.Migrations
namespace AutobusApi.Infrastructure.Data.Migrations
{
[DbContext(typeof(PostgresContext))]
[Migration("20231101122211_initial_create")]
partial class initial_create
[DbContext(typeof(ApplicationDbContext))]
[Migration("20231113193110_InitialCreate")]
partial class InitialCreate
{
/// <inheritdoc />
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasDefaultSchema("domain")
.HasAnnotation("ProductVersion", "7.0.13")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
@ -63,7 +64,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("CityId");
b.ToTable("addresses", (string)null);
b.ToTable("addresses", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Carriage", b =>
@ -102,7 +103,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("carriages", (string)null);
b.ToTable("carriages", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.City", b =>
@ -131,7 +132,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("RegionId");
b.ToTable("cities", (string)null);
b.ToTable("cities", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Company", b =>
@ -169,7 +170,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("companies", (string)null);
b.ToTable("companies", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Country", b =>
@ -192,7 +193,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("countries", (string)null);
b.ToTable("countries", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Employee", b =>
@ -217,6 +218,10 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(32)")
.HasColumnName("first_name");
b.Property<int>("IdentityId")
.HasColumnType("int")
.HasColumnName("identity_id");
b.Property<bool>("IsDeleted")
.HasColumnType("boolean")
.HasColumnName("is_deleted");
@ -240,7 +245,10 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("EmployerCompanyId");
b.ToTable("employees", (string)null);
b.HasIndex("IdentityId")
.IsUnique();
b.ToTable("employees", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.EmployeeDocument", b =>
@ -274,7 +282,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("EmployeeId");
b.ToTable("employee_documents", (string)null);
b.ToTable("employee_documents", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Region", b =>
@ -303,7 +311,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("CountryId");
b.ToTable("regions", (string)null);
b.ToTable("regions", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Review", b =>
@ -325,7 +333,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnName("is_deleted");
b.Property<DateTime>("PostDateTimeUtc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.HasColumnName("post_timestamp_utc");
b.Property<decimal>("Rating")
@ -346,7 +354,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("reviews", (string)null);
b.ToTable("reviews", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Route", b =>
@ -364,7 +372,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("routes", (string)null);
b.ToTable("routes", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.RouteAddress", b =>
@ -398,7 +406,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("RouteId");
b.ToTable("route_addresses", (string)null);
b.ToTable("route_addresses", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.RouteAddressDetails", b =>
@ -440,7 +448,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("route_address_details", (string)null);
b.ToTable("route_address_details", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Ticket", b =>
@ -470,7 +478,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("tickets", (string)null);
b.ToTable("tickets", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.TicketDocument", b =>
@ -502,7 +510,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("ticket_documents", (string)null);
b.ToTable("ticket_documents", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.TicketGroup", b =>
@ -567,7 +575,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnName("passenger_sex");
b.Property<DateTime>("PurchaseDateTimeUtc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.HasColumnName("purchase_timestamp_utc");
b.Property<int>("TicketDocumentId")
@ -584,7 +592,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("UserId");
b.ToTable("ticket_groups", (string)null);
b.ToTable("ticket_groups", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.TrainCarriage", b =>
@ -612,7 +620,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("TrainId");
b.ToTable("train_carriages", (string)null);
b.ToTable("train_carriages", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.User", b =>
@ -624,13 +632,20 @@ namespace AutobusApi.Persistence.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int>("IdentityId")
.HasColumnType("int")
.HasColumnName("identity_id");
b.Property<bool>("IsDeleted")
.HasColumnType("boolean")
.HasColumnName("is_deleted");
b.HasKey("Id");
b.ToTable("users", (string)null);
b.HasIndex("IdentityId")
.IsUnique();
b.ToTable("users", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Vehicle", b =>
@ -654,7 +669,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("CompanyId");
b.ToTable("vehicles", (string)null);
b.ToTable("vehicles", "domain");
b.UseTptMappingStrategy();
});
@ -669,7 +684,7 @@ namespace AutobusApi.Persistence.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<DateTime>("DepartureDateTimeUtc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.HasColumnName("departure_timestamp_utc");
b.Property<bool>("IsDeleted")
@ -690,7 +705,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleId");
b.ToTable("vehicle_enrollments", (string)null);
b.ToTable("vehicle_enrollments", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.VehicleEnrollmentEmployee", b =>
@ -720,7 +735,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("vehicle_enrollment_employees", (string)null);
b.ToTable("vehicle_enrollment_employees", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Aircraft", b =>
@ -749,7 +764,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(8)")
.HasColumnName("number");
b.ToTable("aircrafts", (string)null);
b.ToTable("aircrafts", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Bus", b =>
@ -790,7 +805,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(8)")
.HasColumnName("number");
b.ToTable("buses", (string)null);
b.ToTable("buses", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Train", b =>
@ -802,7 +817,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(8)")
.HasColumnName("number");
b.ToTable("trains", (string)null);
b.ToTable("trains", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Address", b =>

View File

@ -5,19 +5,23 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace AutobusApi.Persistence.Migrations
namespace AutobusApi.Infrastructure.Data.Migrations
{
/// <inheritdoc />
public partial class initial_create : Migration
public partial class InitialCreate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.EnsureSchema(
name: "domain");
migrationBuilder.AlterDatabase()
.Annotation("Npgsql:PostgresExtension:postgis", ",,");
migrationBuilder.CreateTable(
name: "carriages",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -36,6 +40,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "companies",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -53,6 +58,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "countries",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -67,6 +73,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "routes",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -80,6 +87,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "ticket_documents",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -96,10 +104,12 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "users",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
identity_id = table.Column<int>(type: "int", nullable: false),
is_deleted = table.Column<bool>(type: "boolean", nullable: false)
},
constraints: table =>
@ -109,6 +119,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "employees",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -118,6 +129,7 @@ namespace AutobusApi.Persistence.Migrations
patronymic = table.Column<string>(type: "varchar(32)", nullable: false),
sex = table.Column<string>(type: "varchar(16)", nullable: false),
birth_date = table.Column<DateOnly>(type: "date", nullable: false),
identity_id = table.Column<int>(type: "int", nullable: false),
employer_company_id = table.Column<int>(type: "int", nullable: false),
is_deleted = table.Column<bool>(type: "boolean", nullable: false)
},
@ -127,6 +139,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_employees_companies_employerCompanyId",
column: x => x.employer_company_id,
principalSchema: "domain",
principalTable: "companies",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -134,6 +147,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "vehicles",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -147,6 +161,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_vehicles_companies_companyId",
column: x => x.company_id,
principalSchema: "domain",
principalTable: "companies",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -154,6 +169,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "regions",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -168,6 +184,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_regions_coutries_countryId",
column: x => x.country_id,
principalSchema: "domain",
principalTable: "countries",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -175,6 +192,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "ticket_groups",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -188,7 +206,7 @@ namespace AutobusApi.Persistence.Migrations
passenger_patronymic = table.Column<string>(type: "varchar(32)", nullable: false),
passenger_sex = table.Column<string>(type: "varchar(16)", nullable: false),
passenger_birth_date = table.Column<DateOnly>(type: "date", nullable: false),
purchase_timestamp_utc = table.Column<DateTime>(type: "timestamp", nullable: false),
purchase_timestamp_utc = table.Column<DateTime>(type: "timestamptz", nullable: false),
is_returned = table.Column<bool>(type: "boolean", nullable: false),
user_id = table.Column<int>(type: "int", nullable: true),
TicketDocumentId = table.Column<int>(type: "int", nullable: false),
@ -200,12 +218,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_ticketGroups_ticketDocuments_ticketDocumentId",
column: x => x.TicketDocumentId,
principalSchema: "domain",
principalTable: "ticket_documents",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_ticketGroups_users_userId",
column: x => x.user_id,
principalSchema: "domain",
principalTable: "users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -213,6 +233,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "employee_documents",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -228,6 +249,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_employeeDocuments_employees_employeeId",
column: x => x.employee_id,
principalSchema: "domain",
principalTable: "employees",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -235,6 +257,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "aircrafts",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false),
@ -250,6 +273,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_aircrafts_vehicles_id",
column: x => x.id,
principalSchema: "domain",
principalTable: "vehicles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -257,6 +281,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "buses",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false),
@ -275,6 +300,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_buses_vehicles_id",
column: x => x.id,
principalSchema: "domain",
principalTable: "vehicles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -282,6 +308,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "trains",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false),
@ -293,6 +320,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_trains_vehicles_id",
column: x => x.id,
principalSchema: "domain",
principalTable: "vehicles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -300,11 +328,12 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "vehicle_enrollments",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
departure_timestamp_utc = table.Column<DateTime>(type: "timestamp", nullable: false),
departure_timestamp_utc = table.Column<DateTime>(type: "timestamptz", nullable: false),
vehicle_id = table.Column<int>(type: "int", nullable: false),
route_id = table.Column<int>(type: "int", nullable: false),
is_deleted = table.Column<bool>(type: "boolean", nullable: false)
@ -315,12 +344,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_vehicleEnrollments_routes_routeId",
column: x => x.route_id,
principalSchema: "domain",
principalTable: "routes",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_vehicleEnrollments_vehicles_vehicleId",
column: x => x.vehicle_id,
principalSchema: "domain",
principalTable: "vehicles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -328,6 +359,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "cities",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -342,6 +374,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_cities_regions_regionId",
column: x => x.region_id,
principalSchema: "domain",
principalTable: "regions",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -349,6 +382,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "train_carriages",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -363,12 +397,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_trainCarriages_trains_carriageId",
column: x => x.train_id,
principalSchema: "domain",
principalTable: "carriages",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_trainCarriages_trains_trainId",
column: x => x.train_id,
principalSchema: "domain",
principalTable: "trains",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -376,13 +412,14 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "reviews",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
rating = table.Column<decimal>(type: "numeric(1,0)", nullable: false),
comment = table.Column<string>(type: "varchar(128)", nullable: false),
post_timestamp_utc = table.Column<DateTime>(type: "timestamp", nullable: false),
post_timestamp_utc = table.Column<DateTime>(type: "timestamptz", nullable: false),
user_id = table.Column<int>(type: "int", nullable: false),
vehicle_enrollment_id = table.Column<int>(type: "int", nullable: false),
is_deleted = table.Column<bool>(type: "boolean", nullable: false)
@ -393,12 +430,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_reviews_users_userId",
column: x => x.user_id,
principalSchema: "domain",
principalTable: "users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_reviews_vehicleEnrollments_vehicleEnrollmentId",
column: x => x.vehicle_enrollment_id,
principalSchema: "domain",
principalTable: "vehicle_enrollments",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -406,6 +445,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "tickets",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -420,12 +460,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_tickets_ticketGroups_ticketGroupId",
column: x => x.ticket_group_id,
principalSchema: "domain",
principalTable: "ticket_groups",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_tickets_vehicleEnrollments_vehicleEnrollmentId",
column: x => x.vehicle_enrollment_id,
principalSchema: "domain",
principalTable: "vehicle_enrollments",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -433,6 +475,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "vehicle_enrollment_employees",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -447,12 +490,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_vehicleEnrollmentEmployees_employees_employeeId",
column: x => x.employee_id,
principalSchema: "domain",
principalTable: "employees",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_vehicleEnrollmentEmployees_vehicleEnrollments_vehicleEnrollmentId",
column: x => x.vehicle_enrollment_id,
principalSchema: "domain",
principalTable: "vehicle_enrollments",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -460,6 +505,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "addresses",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -476,6 +522,7 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_addresses_city_id",
column: x => x.city_id,
principalSchema: "domain",
principalTable: "cities",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -483,6 +530,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "route_addresses",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -498,12 +546,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_routeAddresses_addresses_addressId",
column: x => x.address_id,
principalSchema: "domain",
principalTable: "addresses",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_routeAddresses_routes_routeId",
column: x => x.route_id,
principalSchema: "domain",
principalTable: "routes",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -511,6 +561,7 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateTable(
name: "route_address_details",
schema: "domain",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
@ -528,12 +579,14 @@ namespace AutobusApi.Persistence.Migrations
table.ForeignKey(
name: "fk_routeAddressDetails_routeAddress_routeAddressId",
column: x => x.route_address_id,
principalSchema: "domain",
principalTable: "route_addresses",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "fk_routeAddressDetails_vehicleEnrollments_vehicleEnrollmentId",
column: x => x.vehicle_enrollment_id,
principalSchema: "domain",
principalTable: "vehicle_enrollments",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
@ -541,107 +594,142 @@ namespace AutobusApi.Persistence.Migrations
migrationBuilder.CreateIndex(
name: "IX_addresses_city_id",
schema: "domain",
table: "addresses",
column: "city_id");
migrationBuilder.CreateIndex(
name: "IX_cities_region_id",
schema: "domain",
table: "cities",
column: "region_id");
migrationBuilder.CreateIndex(
name: "IX_employee_documents_employee_id",
schema: "domain",
table: "employee_documents",
column: "employee_id");
migrationBuilder.CreateIndex(
name: "IX_employees_employer_company_id",
schema: "domain",
table: "employees",
column: "employer_company_id");
migrationBuilder.CreateIndex(
name: "IX_employees_identity_id",
schema: "domain",
table: "employees",
column: "identity_id",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_regions_country_id",
schema: "domain",
table: "regions",
column: "country_id");
migrationBuilder.CreateIndex(
name: "IX_reviews_user_id",
schema: "domain",
table: "reviews",
column: "user_id");
migrationBuilder.CreateIndex(
name: "IX_reviews_vehicle_enrollment_id",
schema: "domain",
table: "reviews",
column: "vehicle_enrollment_id");
migrationBuilder.CreateIndex(
name: "IX_route_address_details_route_address_id",
schema: "domain",
table: "route_address_details",
column: "route_address_id");
migrationBuilder.CreateIndex(
name: "IX_route_address_details_vehicle_enrollment_id",
schema: "domain",
table: "route_address_details",
column: "vehicle_enrollment_id");
migrationBuilder.CreateIndex(
name: "IX_route_addresses_address_id",
schema: "domain",
table: "route_addresses",
column: "address_id");
migrationBuilder.CreateIndex(
name: "IX_route_addresses_route_id",
schema: "domain",
table: "route_addresses",
column: "route_id");
migrationBuilder.CreateIndex(
name: "IX_ticket_groups_TicketDocumentId",
schema: "domain",
table: "ticket_groups",
column: "TicketDocumentId",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_ticket_groups_user_id",
schema: "domain",
table: "ticket_groups",
column: "user_id");
migrationBuilder.CreateIndex(
name: "IX_tickets_ticket_group_id",
schema: "domain",
table: "tickets",
column: "ticket_group_id");
migrationBuilder.CreateIndex(
name: "IX_tickets_vehicle_enrollment_id",
schema: "domain",
table: "tickets",
column: "vehicle_enrollment_id");
migrationBuilder.CreateIndex(
name: "IX_train_carriages_train_id",
schema: "domain",
table: "train_carriages",
column: "train_id");
migrationBuilder.CreateIndex(
name: "IX_users_identity_id",
schema: "domain",
table: "users",
column: "identity_id",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_vehicle_enrollment_employees_employee_id",
schema: "domain",
table: "vehicle_enrollment_employees",
column: "employee_id");
migrationBuilder.CreateIndex(
name: "IX_vehicle_enrollment_employees_vehicle_enrollment_id",
schema: "domain",
table: "vehicle_enrollment_employees",
column: "vehicle_enrollment_id");
migrationBuilder.CreateIndex(
name: "IX_vehicle_enrollments_route_id",
schema: "domain",
table: "vehicle_enrollments",
column: "route_id");
migrationBuilder.CreateIndex(
name: "IX_vehicle_enrollments_vehicle_id",
schema: "domain",
table: "vehicle_enrollments",
column: "vehicle_id");
migrationBuilder.CreateIndex(
name: "IX_vehicles_company_id",
schema: "domain",
table: "vehicles",
column: "company_id");
}
@ -650,73 +738,96 @@ namespace AutobusApi.Persistence.Migrations
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "aircrafts");
name: "aircrafts",
schema: "domain");
migrationBuilder.DropTable(
name: "buses");
name: "buses",
schema: "domain");
migrationBuilder.DropTable(
name: "employee_documents");
name: "employee_documents",
schema: "domain");
migrationBuilder.DropTable(
name: "reviews");
name: "reviews",
schema: "domain");
migrationBuilder.DropTable(
name: "route_address_details");
name: "route_address_details",
schema: "domain");
migrationBuilder.DropTable(
name: "tickets");
name: "tickets",
schema: "domain");
migrationBuilder.DropTable(
name: "train_carriages");
name: "train_carriages",
schema: "domain");
migrationBuilder.DropTable(
name: "vehicle_enrollment_employees");
name: "vehicle_enrollment_employees",
schema: "domain");
migrationBuilder.DropTable(
name: "route_addresses");
name: "route_addresses",
schema: "domain");
migrationBuilder.DropTable(
name: "ticket_groups");
name: "ticket_groups",
schema: "domain");
migrationBuilder.DropTable(
name: "carriages");
name: "carriages",
schema: "domain");
migrationBuilder.DropTable(
name: "trains");
name: "trains",
schema: "domain");
migrationBuilder.DropTable(
name: "employees");
name: "employees",
schema: "domain");
migrationBuilder.DropTable(
name: "vehicle_enrollments");
name: "vehicle_enrollments",
schema: "domain");
migrationBuilder.DropTable(
name: "addresses");
name: "addresses",
schema: "domain");
migrationBuilder.DropTable(
name: "ticket_documents");
name: "ticket_documents",
schema: "domain");
migrationBuilder.DropTable(
name: "users");
name: "users",
schema: "domain");
migrationBuilder.DropTable(
name: "routes");
name: "routes",
schema: "domain");
migrationBuilder.DropTable(
name: "vehicles");
name: "vehicles",
schema: "domain");
migrationBuilder.DropTable(
name: "cities");
name: "cities",
schema: "domain");
migrationBuilder.DropTable(
name: "companies");
name: "companies",
schema: "domain");
migrationBuilder.DropTable(
name: "regions");
name: "regions",
schema: "domain");
migrationBuilder.DropTable(
name: "countries");
name: "countries",
schema: "domain");
}
}
}

View File

@ -1,6 +1,6 @@
// <auto-generated />
using System;
using AutoubsApi.Persistence.Contexts;
using AutoubsApi.Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
@ -9,15 +9,16 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace AutobusApi.Persistence.Migrations
namespace AutobusApi.Infrastructure.Data.Migrations
{
[DbContext(typeof(PostgresContext))]
partial class PostgresContextModelSnapshot : ModelSnapshot
[DbContext(typeof(ApplicationDbContext))]
partial class ApplicationDbContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasDefaultSchema("domain")
.HasAnnotation("ProductVersion", "7.0.13")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
@ -60,7 +61,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("CityId");
b.ToTable("addresses", (string)null);
b.ToTable("addresses", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Carriage", b =>
@ -99,7 +100,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("carriages", (string)null);
b.ToTable("carriages", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.City", b =>
@ -128,7 +129,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("RegionId");
b.ToTable("cities", (string)null);
b.ToTable("cities", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Company", b =>
@ -166,7 +167,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("companies", (string)null);
b.ToTable("companies", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Country", b =>
@ -189,7 +190,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("countries", (string)null);
b.ToTable("countries", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Employee", b =>
@ -214,6 +215,10 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(32)")
.HasColumnName("first_name");
b.Property<int>("IdentityId")
.HasColumnType("int")
.HasColumnName("identity_id");
b.Property<bool>("IsDeleted")
.HasColumnType("boolean")
.HasColumnName("is_deleted");
@ -237,7 +242,10 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("EmployerCompanyId");
b.ToTable("employees", (string)null);
b.HasIndex("IdentityId")
.IsUnique();
b.ToTable("employees", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.EmployeeDocument", b =>
@ -271,7 +279,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("EmployeeId");
b.ToTable("employee_documents", (string)null);
b.ToTable("employee_documents", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Region", b =>
@ -300,7 +308,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("CountryId");
b.ToTable("regions", (string)null);
b.ToTable("regions", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Review", b =>
@ -322,7 +330,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnName("is_deleted");
b.Property<DateTime>("PostDateTimeUtc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.HasColumnName("post_timestamp_utc");
b.Property<decimal>("Rating")
@ -343,7 +351,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("reviews", (string)null);
b.ToTable("reviews", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Route", b =>
@ -361,7 +369,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("routes", (string)null);
b.ToTable("routes", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.RouteAddress", b =>
@ -395,7 +403,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("RouteId");
b.ToTable("route_addresses", (string)null);
b.ToTable("route_addresses", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.RouteAddressDetails", b =>
@ -437,7 +445,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("route_address_details", (string)null);
b.ToTable("route_address_details", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Ticket", b =>
@ -467,7 +475,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("tickets", (string)null);
b.ToTable("tickets", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.TicketDocument", b =>
@ -499,7 +507,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasKey("Id");
b.ToTable("ticket_documents", (string)null);
b.ToTable("ticket_documents", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.TicketGroup", b =>
@ -564,7 +572,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnName("passenger_sex");
b.Property<DateTime>("PurchaseDateTimeUtc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.HasColumnName("purchase_timestamp_utc");
b.Property<int>("TicketDocumentId")
@ -581,7 +589,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("UserId");
b.ToTable("ticket_groups", (string)null);
b.ToTable("ticket_groups", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.TrainCarriage", b =>
@ -609,7 +617,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("TrainId");
b.ToTable("train_carriages", (string)null);
b.ToTable("train_carriages", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.User", b =>
@ -621,13 +629,20 @@ namespace AutobusApi.Persistence.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int>("IdentityId")
.HasColumnType("int")
.HasColumnName("identity_id");
b.Property<bool>("IsDeleted")
.HasColumnType("boolean")
.HasColumnName("is_deleted");
b.HasKey("Id");
b.ToTable("users", (string)null);
b.HasIndex("IdentityId")
.IsUnique();
b.ToTable("users", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Vehicle", b =>
@ -651,7 +666,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("CompanyId");
b.ToTable("vehicles", (string)null);
b.ToTable("vehicles", "domain");
b.UseTptMappingStrategy();
});
@ -666,7 +681,7 @@ namespace AutobusApi.Persistence.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<DateTime>("DepartureDateTimeUtc")
.HasColumnType("timestamp")
.HasColumnType("timestamptz")
.HasColumnName("departure_timestamp_utc");
b.Property<bool>("IsDeleted")
@ -687,7 +702,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleId");
b.ToTable("vehicle_enrollments", (string)null);
b.ToTable("vehicle_enrollments", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.VehicleEnrollmentEmployee", b =>
@ -717,7 +732,7 @@ namespace AutobusApi.Persistence.Migrations
b.HasIndex("VehicleEnrollmentId");
b.ToTable("vehicle_enrollment_employees", (string)null);
b.ToTable("vehicle_enrollment_employees", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Aircraft", b =>
@ -746,7 +761,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(8)")
.HasColumnName("number");
b.ToTable("aircrafts", (string)null);
b.ToTable("aircrafts", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Bus", b =>
@ -787,7 +802,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(8)")
.HasColumnName("number");
b.ToTable("buses", (string)null);
b.ToTable("buses", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Train", b =>
@ -799,7 +814,7 @@ namespace AutobusApi.Persistence.Migrations
.HasColumnType("varchar(8)")
.HasColumnName("number");
b.ToTable("trains", (string)null);
b.ToTable("trains", "domain");
});
modelBuilder.Entity("AutobusApi.Domain.Entities.Address", b =>

View File

@ -1,26 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.13" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.13">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="7.0.11" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="7.0.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AutobusApi.Infrastructure\AutobusApi.Infrastructure.csproj" />
<ProjectReference Include="..\AutobusApi.Domain\AutobusApi.Domain.csproj" />
<ProjectReference Include="..\AutobusApi.Application\AutobusApi.Application.csproj" />
</ItemGroup>
</Project>

View File

@ -1,64 +0,0 @@
using System.Reflection;
using AutobusApi.Domain.Entities;
using Microsoft.EntityFrameworkCore;
namespace AutoubsApi.Persistence.Contexts;
public class PostgresContext : DbContext
{
public PostgresContext(DbContextOptions<PostgresContext> options)
: base(options) { }
public DbSet<Country> Countries { get; set; }
public DbSet<Region> Regions { get; set; }
public DbSet<City> Cities { get; set; }
public DbSet<Address> Addresses { get; set; }
public DbSet<RouteAddress> RouteAddresses { get; set; }
public DbSet<Route> Routes { get; set; }
public DbSet<RouteAddressDetails> RouteAddressDetails { get; set; }
public DbSet<VehicleEnrollment> VehicleEnrollments { get; set; }
public DbSet<Vehicle> Vehicles { get; set; }
public DbSet<Bus> Buses { get; set; }
public DbSet<Aircraft> Aircraft { get; set; }
public DbSet<Train> Trains { get; set; }
public DbSet<TrainCarriage> TrainCarriages { get; set; }
public DbSet<Carriage> Carriages { get; set; }
public DbSet<Company> Companies { get; set; }
public DbSet<Employee> Employees { get; set; }
public DbSet<EmployeeDocument> EmployeeDocuments { get; set; }
public DbSet<VehicleEnrollmentEmployee> vehicleEnrollmentEmployees { get; set; }
public DbSet<User> Users { get; set; }
public DbSet<TicketGroup> TicketGroups { get; set; }
public DbSet<Ticket> Tickets { get; set; }
public DbSet<TicketDocument> TicketDocuments { get; set; }
public DbSet<Review> Reviews { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.HasPostgresExtension("postgis");
modelBuilder.ApplyConfigurationsFromAssembly(Assembly.GetExecutingAssembly());
}
}

View File

@ -13,7 +13,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutobusApi.Infrastructure",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutobusApi.IntegrationTests", "AutobusApi.IntegrationTests\AutobusApi.IntegrationTests.csproj", "{89BC05CE-91D8-440C-89AB-E37D3A6AF49A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutobusApi.Persistence", "AutobusApi.Persistence\AutobusApi.Persistence.csproj", "{3EE87DBF-F48C-4E80-BA41-FDF22C0E9234}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutobusApi.UnitTests", "AutobusApi.UnitTests\AutobusApi.UnitTests.csproj", "{93330D27-069C-4BCD-BE6F-FCF1D2BFE3FE}"
EndProject
@ -46,10 +45,6 @@ Global
{89BC05CE-91D8-440C-89AB-E37D3A6AF49A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{89BC05CE-91D8-440C-89AB-E37D3A6AF49A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{89BC05CE-91D8-440C-89AB-E37D3A6AF49A}.Release|Any CPU.Build.0 = Release|Any CPU
{3EE87DBF-F48C-4E80-BA41-FDF22C0E9234}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3EE87DBF-F48C-4E80-BA41-FDF22C0E9234}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3EE87DBF-F48C-4E80-BA41-FDF22C0E9234}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3EE87DBF-F48C-4E80-BA41-FDF22C0E9234}.Release|Any CPU.Build.0 = Release|Any CPU
{93330D27-069C-4BCD-BE6F-FCF1D2BFE3FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{93330D27-069C-4BCD-BE6F-FCF1D2BFE3FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{93330D27-069C-4BCD-BE6F-FCF1D2BFE3FE}.Release|Any CPU.ActiveCfg = Release|Any CPU