The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
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.
24 lines
738 B
24 lines
738 B
using System; |
|
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
namespace Teknik.IdentityServer.Data.Migrations.ApplicationDb |
|
{ |
|
public partial class UserEditDate : Migration |
|
{ |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.AddColumn<DateTime>( |
|
name: "LastEdit", |
|
table: "AspNetUsers", |
|
nullable: false, |
|
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); |
|
} |
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.DropColumn( |
|
name: "LastEdit", |
|
table: "AspNetUsers"); |
|
} |
|
} |
|
}
|
|
|