| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace GreenTree.Maschinenbestellungen.Domain.Migrations
- {
- public partial class InitialCreate : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.CreateTable(
- name: "Policies",
- columns: table => new
- {
- Name = table.Column<string>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Policies", x => x.Name);
- });
- migrationBuilder.CreateTable(
- name: "Users",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Accountname = table.Column<string>(nullable: false),
- Forename = table.Column<string>(nullable: false),
- Lastname = table.Column<string>(nullable: false),
- MailAddress = table.Column<string>(nullable: false),
- Password = table.Column<string>(nullable: false),
- Birthdate = table.Column<DateTime>(nullable: true),
- Activated = table.Column<bool>(nullable: false, defaultValue: true)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Users", x => x.Id);
- });
- migrationBuilder.CreateTable(
- name: "UserPolicies",
- columns: table => new
- {
- PolicyName = table.Column<string>(nullable: false),
- UserId = table.Column<int>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_UserPolicies", x => new { x.UserId, x.PolicyName });
- table.ForeignKey(
- name: "FK_UserPolicies_Users_UserId",
- column: x => x.UserId,
- principalTable: "Users",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- });
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "Policies");
- migrationBuilder.DropTable(
- name: "UserPolicies");
- migrationBuilder.DropTable(
- name: "Users");
- }
- }
- }
|