Files
CMS/src/CMSMicroservice.Infrastructure/Persistence/Migrations/20250927194115_u02.cs
2025-09-27 23:48:41 +03:30

86 lines
3.1 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CMSMicroservice.Infrastructure.Persistence.Migrations
{
/// <inheritdoc />
public partial class u02 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsMobileVerified",
schema: "CMS",
table: "Users",
type: "bit",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn<DateTime>(
name: "MobileVerifiedAt",
schema: "CMS",
table: "Users",
type: "datetime2",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ReferralCode",
schema: "CMS",
table: "Users",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
migrationBuilder.CreateTable(
name: "OtpTokens",
schema: "CMS",
columns: table => new
{
Id = table.Column<long>(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Mobile = table.Column<string>(type: "nvarchar(max)", nullable: false),
Purpose = table.Column<string>(type: "nvarchar(max)", nullable: false),
CodeHash = table.Column<string>(type: "nvarchar(max)", nullable: false),
ExpiresAt = table.Column<DateTime>(type: "datetime2", nullable: false),
Attempts = table.Column<int>(type: "int", nullable: false),
IsUsed = table.Column<bool>(type: "bit", nullable: false),
Created = table.Column<DateTime>(type: "datetime2", nullable: false),
CreatedBy = table.Column<string>(type: "nvarchar(max)", nullable: true),
LastModified = table.Column<DateTime>(type: "datetime2", nullable: true),
LastModifiedBy = table.Column<string>(type: "nvarchar(max)", nullable: true),
IsDeleted = table.Column<bool>(type: "bit", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_OtpTokens", x => x.Id);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OtpTokens",
schema: "CMS");
migrationBuilder.DropColumn(
name: "IsMobileVerified",
schema: "CMS",
table: "Users");
migrationBuilder.DropColumn(
name: "MobileVerifiedAt",
schema: "CMS",
table: "Users");
migrationBuilder.DropColumn(
name: "ReferralCode",
schema: "CMS",
table: "Users");
}
}
}