41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Adapters.Driven.Persistence.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddStudentActivation : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "ActivationCodeHash",
|
|
table: "Students",
|
|
type: "nvarchar(256)",
|
|
maxLength: 256,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<DateTime>(
|
|
name: "ActivationExpiresAt",
|
|
table: "Students",
|
|
type: "datetime2",
|
|
nullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ActivationCodeHash",
|
|
table: "Students");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "ActivationExpiresAt",
|
|
table: "Students");
|
|
}
|
|
}
|
|
}
|