You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
57 lines
2.2 KiB
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
#nullable disable |
|
|
|
namespace Bit.PostgresMigrations.Migrations; |
|
|
|
/// <inheritdoc /> |
|
public partial class ProviderInvoiceItem : Migration |
|
{ |
|
/// <inheritdoc /> |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.CreateTable( |
|
name: "ProviderInvoiceItem", |
|
columns: table => new |
|
{ |
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
ProviderId = table.Column<Guid>(type: "uuid", nullable: false), |
|
InvoiceId = table.Column<string>(type: "text", nullable: true), |
|
InvoiceNumber = table.Column<string>(type: "text", nullable: true), |
|
ClientName = table.Column<string>(type: "text", nullable: true), |
|
PlanName = table.Column<string>(type: "text", nullable: true), |
|
AssignedSeats = table.Column<int>(type: "integer", nullable: false), |
|
UsedSeats = table.Column<int>(type: "integer", nullable: false), |
|
Total = table.Column<decimal>(type: "numeric", nullable: false), |
|
Created = table.Column<DateTime>(type: "timestamp with time zone", nullable: false) |
|
}, |
|
constraints: table => |
|
{ |
|
table.PrimaryKey("PK_ProviderInvoiceItem", x => x.Id); |
|
table.ForeignKey( |
|
name: "FK_ProviderInvoiceItem_Provider_ProviderId", |
|
column: x => x.ProviderId, |
|
principalTable: "Provider", |
|
principalColumn: "Id", |
|
onDelete: ReferentialAction.Cascade); |
|
}); |
|
|
|
migrationBuilder.CreateIndex( |
|
name: "IX_ProviderInvoiceItem_Id_InvoiceId", |
|
table: "ProviderInvoiceItem", |
|
columns: new[] { "Id", "InvoiceId" }, |
|
unique: true); |
|
|
|
migrationBuilder.CreateIndex( |
|
name: "IX_ProviderInvoiceItem_ProviderId", |
|
table: "ProviderInvoiceItem", |
|
column: "ProviderId"); |
|
} |
|
|
|
/// <inheritdoc /> |
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.DropTable( |
|
name: "ProviderInvoiceItem"); |
|
} |
|
}
|
|
|