using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RobotNet10.RobotApp.Data.Migrations.AppDb { /// public partial class AddAppDb : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "AspNetRoles", columns: table => new { Id = table.Column(type: "TEXT", nullable: false), Name = table.Column(type: "TEXT", maxLength: 256, nullable: true), NormalizedName = table.Column(type: "TEXT", maxLength: 256, nullable: true), ConcurrencyStamp = table.Column(type: "TEXT", nullable: true) }, constraints: table => { table.PrimaryKey("PK_AspNetRoles", x => x.Id); }); migrationBuilder.CreateTable( name: "AspNetUsers", columns: table => new { Id = table.Column(type: "TEXT", nullable: false), UserName = table.Column(type: "TEXT", maxLength: 256, nullable: true), NormalizedUserName = table.Column(type: "TEXT", maxLength: 256, nullable: true), Email = table.Column(type: "TEXT", maxLength: 256, nullable: true), NormalizedEmail = table.Column(type: "TEXT", maxLength: 256, nullable: true), EmailConfirmed = table.Column(type: "INTEGER", nullable: false), PasswordHash = table.Column(type: "TEXT", nullable: true), SecurityStamp = table.Column(type: "TEXT", nullable: true), ConcurrencyStamp = table.Column(type: "TEXT", nullable: true), PhoneNumber = table.Column(type: "TEXT", nullable: true), PhoneNumberConfirmed = table.Column(type: "INTEGER", nullable: false), TwoFactorEnabled = table.Column(type: "INTEGER", nullable: false), LockoutEnd = table.Column(type: "TEXT", nullable: true), LockoutEnabled = table.Column(type: "INTEGER", nullable: false), AccessFailedCount = table.Column(type: "INTEGER", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AspNetUsers", x => x.Id); }); migrationBuilder.CreateTable( name: "RobotConfig", columns: table => new { Id = table.Column(type: "uniqueidentifier", nullable: false), NavigationType = table.Column(type: "int", nullable: false), RadiusWheel = table.Column(type: "double", nullable: false), Width = table.Column(type: "double", nullable: false), Length = table.Column(type: "double", nullable: false), Height = table.Column(type: "double", nullable: false), CreatedAt = table.Column(type: "datetime2", nullable: false), UpdatedAt = table.Column(type: "datetime2", nullable: false), IsActive = table.Column(type: "bit", nullable: false), ConfigName = table.Column(type: "nvarchar(64)", maxLength: 100, nullable: true), Description = table.Column(type: "ntext", maxLength: 500, nullable: true) }, constraints: table => { table.PrimaryKey("PK_RobotConfig", x => x.Id); }); migrationBuilder.CreateTable( name: "RobotPlcConfig", columns: table => new { Id = table.Column(type: "uniqueidentifier", nullable: false), PLCAddress = table.Column(type: "nvarchar(64)", maxLength: 50, nullable: true), PLCPort = table.Column(type: "int", nullable: false), PLCUnitId = table.Column(type: "tinyint", nullable: false), CreatedAt = table.Column(type: "datetime2", nullable: false), UpdatedAt = table.Column(type: "datetime2", nullable: false), IsActive = table.Column(type: "bit", nullable: false), ConfigName = table.Column(type: "nvarchar(64)", maxLength: 100, nullable: true), Description = table.Column(type: "ntext", maxLength: 500, nullable: true) }, constraints: table => { table.PrimaryKey("PK_RobotPlcConfig", x => x.Id); }); migrationBuilder.CreateTable( name: "RobotSafetyConfig", columns: table => new { Id = table.Column(type: "uniqueidentifier", nullable: false), SafetySpeedVerySlow = table.Column(type: "double", nullable: false), SafetySpeedSlow = table.Column(type: "double", nullable: false), SafetySpeedNormal = table.Column(type: "double", nullable: false), SafetySpeedMedium = table.Column(type: "double", nullable: false), SafetySpeedOptimal = table.Column(type: "double", nullable: false), SafetySpeedFast = table.Column(type: "double", nullable: false), SafetySpeedVeryFast = table.Column(type: "double", nullable: false), CreatedAt = table.Column(type: "datetime2", nullable: false), UpdatedAt = table.Column(type: "datetime2", nullable: false), IsActive = table.Column(type: "bit", nullable: false), ConfigName = table.Column(type: "nvarchar(64)", maxLength: 100, nullable: true), Description = table.Column(type: "ntext", maxLength: 500, nullable: true) }, constraints: table => { table.PrimaryKey("PK_RobotSafetyConfig", x => x.Id); }); migrationBuilder.CreateTable( name: "RobotSimulationConfig", columns: table => new { Id = table.Column(type: "uniqueidentifier", nullable: false), EnableSimulation = table.Column(type: "bit", nullable: false), SimulationMaxVelocity = table.Column(type: "double", nullable: false), SimulationMaxAngularVelocity = table.Column(type: "double", nullable: false), SimulationAcceleration = table.Column(type: "double", nullable: false), SimulationDeceleration = table.Column(type: "double", nullable: false), CreatedAt = table.Column(type: "datetime2", nullable: false), UpdatedAt = table.Column(type: "datetime2", nullable: false), IsActive = table.Column(type: "bit", nullable: false), ConfigName = table.Column(type: "nvarchar(64)", maxLength: 100, nullable: true), Description = table.Column(type: "ntext", maxLength: 500, nullable: true) }, constraints: table => { table.PrimaryKey("PK_RobotSimulationConfig", x => x.Id); }); migrationBuilder.CreateTable( name: "RobotVDA5050Config", columns: table => new { Id = table.Column(type: "uniqueidentifier", nullable: false), SerialNumber = table.Column(type: "nvarchar(64)", maxLength: 50, nullable: true), VDA5050_TopicPrefix = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), VDA5050_Manufacturer = table.Column(type: "nvarchar(64)", maxLength: 50, nullable: true), VDA5050_Version = table.Column(type: "nvarchar(64)", maxLength: 20, nullable: true), VDA5050_HostServer = table.Column(type: "nvarchar(64)", maxLength: 100, nullable: true), VDA5050_Port = table.Column(type: "int", nullable: false), VDA5050_UserName = table.Column(type: "nvarchar(64)", maxLength: 50, nullable: true), VDA5050_Password = table.Column(type: "nvarchar(64)", maxLength: 50, nullable: true), VDA5050_PublishRepeat = table.Column(type: "int", nullable: false), VDA5050_EnablePassword = table.Column(type: "bit", nullable: false), VDA5050_EnableTls = table.Column(type: "bit", nullable: false), VDA5050_EnableSSLSecure = table.Column(type: "bit", nullable: false), VDA5050_CA = table.Column(type: "nvarchar(64)", nullable: true), VDA5050_Cer = table.Column(type: "nvarchar(64)", nullable: true), VDA5050_Key = table.Column(type: "nvarchar(64)", nullable: true), CreatedAt = table.Column(type: "datetime2", nullable: false), UpdatedAt = table.Column(type: "datetime2", nullable: false), IsActive = table.Column(type: "bit", nullable: false), ConfigName = table.Column(type: "nvarchar(64)", maxLength: 100, nullable: true), Description = table.Column(type: "ntext", maxLength: 500, nullable: true) }, constraints: table => { table.PrimaryKey("PK_RobotVDA5050Config", x => x.Id); }); migrationBuilder.CreateTable( name: "AspNetRoleClaims", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), RoleId = table.Column(type: "TEXT", nullable: false), ClaimType = table.Column(type: "TEXT", nullable: true), ClaimValue = table.Column(type: "TEXT", nullable: true) }, constraints: table => { table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id); table.ForeignKey( name: "FK_AspNetRoleClaims_AspNetRoles_RoleId", column: x => x.RoleId, principalTable: "AspNetRoles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "AspNetUserClaims", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), UserId = table.Column(type: "TEXT", nullable: false), ClaimType = table.Column(type: "TEXT", nullable: true), ClaimValue = table.Column(type: "TEXT", nullable: true) }, constraints: table => { table.PrimaryKey("PK_AspNetUserClaims", x => x.Id); table.ForeignKey( name: "FK_AspNetUserClaims_AspNetUsers_UserId", column: x => x.UserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "AspNetUserLogins", columns: table => new { LoginProvider = table.Column(type: "TEXT", nullable: false), ProviderKey = table.Column(type: "TEXT", nullable: false), ProviderDisplayName = table.Column(type: "TEXT", nullable: true), UserId = table.Column(type: "TEXT", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey }); table.ForeignKey( name: "FK_AspNetUserLogins_AspNetUsers_UserId", column: x => x.UserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "AspNetUserRoles", columns: table => new { UserId = table.Column(type: "TEXT", nullable: false), RoleId = table.Column(type: "TEXT", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId }); table.ForeignKey( name: "FK_AspNetUserRoles_AspNetRoles_RoleId", column: x => x.RoleId, principalTable: "AspNetRoles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_AspNetUserRoles_AspNetUsers_UserId", column: x => x.UserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "AspNetUserTokens", columns: table => new { UserId = table.Column(type: "TEXT", nullable: false), LoginProvider = table.Column(type: "TEXT", nullable: false), Name = table.Column(type: "TEXT", nullable: false), Value = table.Column(type: "TEXT", nullable: true) }, constraints: table => { table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name }); table.ForeignKey( name: "FK_AspNetUserTokens_AspNetUsers_UserId", column: x => x.UserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_AspNetRoleClaims_RoleId", table: "AspNetRoleClaims", column: "RoleId"); migrationBuilder.CreateIndex( name: "RoleNameIndex", table: "AspNetRoles", column: "NormalizedName", unique: true); migrationBuilder.CreateIndex( name: "IX_AspNetUserClaims_UserId", table: "AspNetUserClaims", column: "UserId"); migrationBuilder.CreateIndex( name: "IX_AspNetUserLogins_UserId", table: "AspNetUserLogins", column: "UserId"); migrationBuilder.CreateIndex( name: "IX_AspNetUserRoles_RoleId", table: "AspNetUserRoles", column: "RoleId"); migrationBuilder.CreateIndex( name: "EmailIndex", table: "AspNetUsers", column: "NormalizedEmail"); migrationBuilder.CreateIndex( name: "UserNameIndex", table: "AspNetUsers", column: "NormalizedUserName", unique: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "AspNetRoleClaims"); migrationBuilder.DropTable( name: "AspNetUserClaims"); migrationBuilder.DropTable( name: "AspNetUserLogins"); migrationBuilder.DropTable( name: "AspNetUserRoles"); migrationBuilder.DropTable( name: "AspNetUserTokens"); migrationBuilder.DropTable( name: "RobotConfig"); migrationBuilder.DropTable( name: "RobotPlcConfig"); migrationBuilder.DropTable( name: "RobotSafetyConfig"); migrationBuilder.DropTable( name: "RobotSimulationConfig"); migrationBuilder.DropTable( name: "RobotVDA5050Config"); migrationBuilder.DropTable( name: "AspNetRoles"); migrationBuilder.DropTable( name: "AspNetUsers"); } } }