using System; using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace Server.Migrations { public partial class Addrefreshtokens : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "RefreshToken", columns: table => new { ApplicationUserId = table.Column(type: "text", nullable: false), Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), Token = table.Column(type: "text", nullable: false), Expires = table.Column(type: "timestamp with time zone", nullable: false), Created = table.Column(type: "timestamp with time zone", nullable: false), Revoked = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("PK_RefreshToken", x => new { x.ApplicationUserId, x.Id }); table.ForeignKey( name: "FK_RefreshToken_AspNetUsers_ApplicationUserId", column: x => x.ApplicationUserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "RefreshToken"); } } }