mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
put the mobile devices migration back
This commit is contained in:
parent
4fdda48512
commit
14ba451f8f
1 changed files with 27 additions and 27 deletions
|
@ -8,34 +8,34 @@ namespace Ombi.Store.Migrations.OmbiMySql
|
||||||
{
|
{
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
{
|
{
|
||||||
migrationBuilder.Sql(@"CREATE TABLE `MobileDevices` (
|
// migrationBuilder.Sql(@"CREATE TABLE `MobileDevices` (
|
||||||
`Id` int NOT NULL AUTO_INCREMENT,
|
// `Id` int NOT NULL AUTO_INCREMENT,
|
||||||
`Token` longtext CHARACTER SET utf8mb4 NULL,
|
// `Token` longtext CHARACTER SET utf8mb4 NULL,
|
||||||
`UserId` varchar(255) CHARACTER SET utf8mb4 NOT NULL,
|
// `UserId` varchar(255) CHARACTER SET utf8mb4 NOT NULL,
|
||||||
`AddedAt` datetime(6) NOT NULL,
|
// `AddedAt` datetime(6) NOT NULL,
|
||||||
CONSTRAINT `PK_MobileDevices` PRIMARY KEY (`Id`),
|
// CONSTRAINT `PK_MobileDevices` PRIMARY KEY (`Id`),
|
||||||
CONSTRAINT `FK_MobileDevices_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `AspNetUsers` (`Id`) ON DELETE RESTRICT
|
// CONSTRAINT `FK_MobileDevices_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `AspNetUsers` (`Id`) ON DELETE RESTRICT
|
||||||
);");
|
//);");
|
||||||
|
|
||||||
//migrationBuilder.CreateTable(
|
migrationBuilder.CreateTable(
|
||||||
// name: "MobileDevices",
|
name: "MobileDevices",
|
||||||
// columns: table => new
|
columns: table => new
|
||||||
// {
|
{
|
||||||
// Id = table.Column<int>(nullable: false).Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
Id = table.Column<int>(nullable: false).Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
// Token = table.Column<string>(maxLength: 256, nullable: true),
|
Token = table.Column<string>(maxLength: 256, nullable: true),
|
||||||
// UserId = table.Column<string>(maxLength: 255, nullable: false),
|
UserId = table.Column<string>(maxLength: 255, nullable: false),
|
||||||
// AddedAt = table.Column<DateTime>(maxLength: 256, nullable: false),
|
AddedAt = table.Column<DateTime>(maxLength: 256, nullable: false),
|
||||||
// },
|
},
|
||||||
// constraints: table =>
|
constraints: table =>
|
||||||
// {
|
{
|
||||||
// table.PrimaryKey("PK_MobileDevices", x => x.Id);
|
table.PrimaryKey("PK_MobileDevices", x => x.Id);
|
||||||
// table.ForeignKey(
|
table.ForeignKey(
|
||||||
// name: "FK_MobileDevices_AspNetUsers_UserId",
|
name: "FK_MobileDevices_AspNetUsers_UserId",
|
||||||
// column: x => x.UserId,
|
column: x => x.UserId,
|
||||||
// principalTable: "AspNetUsers",
|
principalTable: "AspNetUsers",
|
||||||
// principalColumn: "Id",
|
principalColumn: "Id",
|
||||||
// onDelete: ReferentialAction.Restrict);
|
onDelete: ReferentialAction.Restrict);
|
||||||
// });
|
});
|
||||||
|
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
migrationBuilder.CreateIndex(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue