73 lines
3.0 KiB
C#
73 lines
3.0 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace RobotNet.RobotManager.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddRobotDb : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "RobotModels",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
ModelName = table.Column<string>(type: "varchar(127)", nullable: false),
|
|
OriginX = table.Column<double>(type: "float", nullable: false),
|
|
OriginY = table.Column<double>(type: "float", nullable: false),
|
|
Length = table.Column<double>(type: "float", nullable: false),
|
|
Width = table.Column<double>(type: "float", nullable: false),
|
|
ImageWidth = table.Column<int>(type: "int", nullable: false),
|
|
ImageHeight = table.Column<int>(type: "int", nullable: false),
|
|
NavigationType = table.Column<int>(type: "int", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_RobotModels", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Robots",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
RobotId = table.Column<string>(type: "varchar(127)", nullable: false),
|
|
Name = table.Column<string>(type: "varchar(127)", nullable: false),
|
|
ModelId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
MapId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
HomeNode = table.Column<string>(type: "varchar(127)", nullable: true),
|
|
ChargerNode = table.Column<string>(type: "varchar(127)", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Robots", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Robots_RobotModels_MapId",
|
|
column: x => x.MapId,
|
|
principalTable: "RobotModels",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Robots_MapId",
|
|
table: "Robots",
|
|
column: "MapId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Robots");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "RobotModels");
|
|
}
|
|
}
|
|
}
|