using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MainProject.Migrations { /// public partial class InitialCreate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Role", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Name = table.Column(type: "nvarchar(max)", nullable: false), CreationTime = table.Column(type: "datetime2", nullable: false), CreationUserId = table.Column(type: "int", nullable: false), UpdateTime = table.Column(type: "datetime2", nullable: false), UpdateUserId = table.Column(type: "int", nullable: false), DeletionTime = table.Column(type: "datetime2", nullable: false), DeletionUserId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Role", x => x.Id); }); migrationBuilder.CreateTable( name: "Users", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Username = table.Column(type: "nvarchar(max)", nullable: false), FirstName = table.Column(type: "nvarchar(max)", nullable: false), LastName = table.Column(type: "nvarchar(max)", nullable: false), Email = table.Column(type: "nvarchar(max)", nullable: false), RoleId = table.Column(type: "int", nullable: false), PasswordHash = table.Column(type: "nvarchar(max)", nullable: false), CreationTime = table.Column(type: "datetime2", nullable: false), CreationUserId = table.Column(type: "int", nullable: false), UpdateTime = table.Column(type: "datetime2", nullable: false), UpdateUserId = table.Column(type: "int", nullable: false), DeletionTime = table.Column(type: "datetime2", nullable: false), DeletionUserId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Users", x => x.Id); table.ForeignKey( name: "FK_Users_Role_RoleId", column: x => x.RoleId, principalTable: "Role", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_Users_RoleId", table: "Users", column: "RoleId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Users"); migrationBuilder.DropTable( name: "Role"); } } }