summaryrefslogtreecommitdiff
path: root/Migrations/20220916003408_InitialMigration.cs
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-09-15 20:55:44 -0500
committerHombreLaser <sebastian-440@live.com>2022-09-15 20:55:44 -0500
commit2c9c2cc3b414115bca9b6c63ca7b20d49a8a8ec1 (patch)
tree0344372eca04eab992ece36c4e07511f6f0214c6 /Migrations/20220916003408_InitialMigration.cs
parent3381c633fcd73e5159ae4a607835167ebdbb12ee (diff)
Agregar autor
Diffstat (limited to 'Migrations/20220916003408_InitialMigration.cs')
-rw-r--r--Migrations/20220916003408_InitialMigration.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/Migrations/20220916003408_InitialMigration.cs b/Migrations/20220916003408_InitialMigration.cs
new file mode 100644
index 0000000..620f926
--- /dev/null
+++ b/Migrations/20220916003408_InitialMigration.cs
@@ -0,0 +1,36 @@
+using System;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+
+#nullable disable
+
+namespace LibraryAPI.Migrations
+{
+ public partial class InitialMigration : Migration
+ {
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.CreateTable(
+ name: "Author",
+ columns: table => new
+ {
+ Id = table.Column<long>(type: "bigint", nullable: false)
+ .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
+ Country = table.Column<string>(type: "text", nullable: true),
+ Name = table.Column<string>(type: "text", nullable: true),
+ YearOfBirth = table.Column<int>(type: "integer", nullable: false),
+ languages = table.Column<string[]>(type: "text[]", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Author", x => x.Id);
+ });
+ }
+
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropTable(
+ name: "Author");
+ }
+ }
+}