mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
4174 lines
174 KiB
C#
4174 lines
174 KiB
C#
|
|
using System;
|
|||
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|||
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
#nullable disable
|
|||
|
|
|
|||
|
|
namespace Marechai.Database.Migrations
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
public partial class UpdateAnnotations : Migration
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "StorageByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "StorageByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "storage_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "storage_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Path",
|
|||
|
|
table: "StandaloneFiles",
|
|||
|
|
type: "varchar(8192)",
|
|||
|
|
maxLength: 8192,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
oldMaxLength: 8192)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "StandaloneFiles",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "StandaloneFiles",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoundBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoundBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoundByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoundByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "sound_synths",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "sound_synths",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "sound_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "sound_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareVersion",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareVersion",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareVariants",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareVariants",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareVariantByCompilationMedia",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareVariantByCompilationMedia",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareFamilies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareFamilies",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ScreensByMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ScreensByMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Screens",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Screens",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ResolutionsByScreen",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ResolutionsByScreen",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "resolutions_by_gpu",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "resolutions_by_gpu",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "resolutions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "resolutions",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "RequiredSoftwareBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "RequiredSoftwareBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "RequiredOperatingSystemsBySofwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "RequiredOperatingSystemsBySofwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ProcessorsBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ProcessorsBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ProcessorsByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ProcessorsByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "processors_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "processors_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "processors",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "processors",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleBySoftwareVersion",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleBySoftwareVersion",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleBySoftwareFamily",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleBySoftwareFamily",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByMagazines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByMagazines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByDocuments",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByDocuments",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByCompany",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByCompany",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByBooks",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByBooks",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "People",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "People",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "OwnedMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "OwnedMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "OwnedMachinePhotos",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "news",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "news",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "money_donations",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "money_donations",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MemoryByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MemoryByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "memory_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "memory_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaTagDumps",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaTagDumps",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Path",
|
|||
|
|
table: "MediaFiles",
|
|||
|
|
type: "varchar(8192)",
|
|||
|
|
maxLength: 8192,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
oldMaxLength: 8192)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaFiles",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaFiles",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpTrackImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpTrackImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpSubchannelImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpSubchannelImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumps",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumps",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpFileImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpFileImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Media",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Media",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MasteringTexts",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MasteringTexts",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "marechai_db",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazineScans",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazinesByMachinesFamilies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MagazinesByMachinesFamilies",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazinesByMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MagazinesByMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Magazines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Magazines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazineIssues",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MagazineIssues",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MachinesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MachinesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "machines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "machines",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MachinePhotos",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MachineFamiliesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MachineFamiliesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "machine_families",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "machine_families",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "LogicalPartitionsByMedia",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "LogicalPartitionsByMedia",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "LogicalPartitions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "LogicalPartitions",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "log",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "log",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Licenses",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Licenses",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "LanguagesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "LanguagesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Iso4217",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "iso3166_1_numeric",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<short>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "iso3166_1_numeric",
|
|||
|
|
type: "smallint(3)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(short),
|
|||
|
|
oldType: "smallint(3)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ISO_639-3",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "InstructionSetsBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "InstructionSetsBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "instruction_sets",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "instruction_sets",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "instruction_set_extensions_by_processor",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "instruction_set_extensions_by_processor",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "instruction_set_extensions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "instruction_set_extensions",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "GpusBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "GpusBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "GpusByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "GpusByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "gpus_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "gpus_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "gpus",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "gpus",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "forbidden",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "forbidden",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FilesystemsByMediaDumpFile",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FilesystemsByMediaDumpFile",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FilesystemsByLogicalPartition",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FilesystemsByLogicalPartition",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Filesystems",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Filesystems",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FilesByFilesystem",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FilesByFilesystem",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Files",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Files",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FileDataStreamsByStandaloneFile",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FileDataStreamsByStandaloneFile",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FileDataStreamsByMediaFile",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FileDataStreamsByMediaFile",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FileDataStreams",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FileDataStreams",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Dumps",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Dumps",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DumpHardwares",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DumpHardwares",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentScans",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentsByMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentsByMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentsByMachineFamily",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentsByMachineFamily",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Documents",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Documents",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentPeople",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentPeople",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentCompanies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentCompanies",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CurrenciesPegging",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CurrenciesPegging",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CurrenciesInflation",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CurrenciesInflation",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompanyDescriptions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompanyDescriptions",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "company_logos",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "company_logos",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesBySoftwareVersion",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesBySoftwareVersion",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesBySoftwareFamily",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesBySoftwareFamily",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesByMagazines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesByMagazines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesByDocuments",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesByDocuments",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesByBooks",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesByBooks",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "companies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "companies",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "browser_tests",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "browser_tests",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "BookScans",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "BooksByMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "BooksByMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "BooksByMachineFamilies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "BooksByMachineFamilies",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Books",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Books",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Audit",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Audit",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Name",
|
|||
|
|
table: "AspNetUserTokens",
|
|||
|
|
type: "varchar(128)",
|
|||
|
|
maxLength: 128,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(255)")
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "LoginProvider",
|
|||
|
|
table: "AspNetUserTokens",
|
|||
|
|
type: "varchar(128)",
|
|||
|
|
maxLength: 128,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(255)")
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ProviderKey",
|
|||
|
|
table: "AspNetUserLogins",
|
|||
|
|
type: "varchar(128)",
|
|||
|
|
maxLength: 128,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(255)")
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "LoginProvider",
|
|||
|
|
table: "AspNetUserLogins",
|
|||
|
|
type: "varchar(128)",
|
|||
|
|
maxLength: 128,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(255)")
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "AspNetUserClaims",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "AspNetRoleClaims",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "StorageByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "StorageByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "storage_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "storage_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Path",
|
|||
|
|
table: "StandaloneFiles",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 8192,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(8192)",
|
|||
|
|
oldMaxLength: 8192)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "StandaloneFiles",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "StandaloneFiles",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoundBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoundBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoundByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoundByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "sound_synths",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "sound_synths",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "sound_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "sound_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareVersion",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareVersion",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareVariants",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareVariants",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareVariantByCompilationMedia",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareVariantByCompilationMedia",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "SoftwareFamilies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "SoftwareFamilies",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ScreensByMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ScreensByMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Screens",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Screens",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ResolutionsByScreen",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ResolutionsByScreen",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "resolutions_by_gpu",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "resolutions_by_gpu",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "resolutions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "resolutions",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "RequiredSoftwareBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "RequiredSoftwareBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "RequiredOperatingSystemsBySofwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "RequiredOperatingSystemsBySofwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ProcessorsBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ProcessorsBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ProcessorsByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "ProcessorsByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "processors_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "processors_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "processors",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "processors",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleBySoftwareVersion",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleBySoftwareVersion",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleBySoftwareFamily",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleBySoftwareFamily",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByMagazines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByMagazines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByDocuments",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByDocuments",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByCompany",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByCompany",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "PeopleByBooks",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "PeopleByBooks",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "People",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "People",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "OwnedMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "OwnedMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "OriginalExtension",
|
|||
|
|
table: "OwnedMachinePhotos",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "OwnedMachinePhotos",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "news",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "news",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "money_donations",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "money_donations",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MemoryByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MemoryByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "memory_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "memory_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaTagDumps",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaTagDumps",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Path",
|
|||
|
|
table: "MediaFiles",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 8192,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(8192)",
|
|||
|
|
oldMaxLength: 8192)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaFiles",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaFiles",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpTrackImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpTrackImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpSubchannelImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpSubchannelImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumps",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumps",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaDumpFileImages",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaDumpFileImages",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MediaBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MediaBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Media",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Media",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MasteringTexts",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MasteringTexts",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "marechai_db",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "OriginalExtension",
|
|||
|
|
table: "MagazineScans",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazineScans",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazinesByMachinesFamilies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MagazinesByMachinesFamilies",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazinesByMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MagazinesByMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Synopsis",
|
|||
|
|
table: "Magazines",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 262144,
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldMaxLength: 262144,
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Magazines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Magazines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MagazineIssues",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MagazineIssues",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MachinesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MachinesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "machines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "machines",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Source",
|
|||
|
|
table: "MachinePhotos",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "OriginalExtension",
|
|||
|
|
table: "MachinePhotos",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MachinePhotos",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "MachineFamiliesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "MachineFamiliesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "machine_families",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "machine_families",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "LogicalPartitionsByMedia",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "LogicalPartitionsByMedia",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "LogicalPartitions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "LogicalPartitions",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "log",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "log",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Licenses",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Licenses",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "LanguagesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "LanguagesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Iso4217",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "iso3166_1_numeric",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<short>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "iso3166_1_numeric",
|
|||
|
|
type: "smallint(3)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(short),
|
|||
|
|
oldType: "smallint(3)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "ISO_639-3",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "InstructionSetsBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "InstructionSetsBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "instruction_sets",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "instruction_sets",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "instruction_set_extensions_by_processor",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "instruction_set_extensions_by_processor",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "instruction_set_extensions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "instruction_set_extensions",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "GpusBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "GpusBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "GpusByOwnedMachine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "GpusByOwnedMachine",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "gpus_by_machine",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "gpus_by_machine",
|
|||
|
|
type: "bigint(20)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint(20)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "gpus",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "gpus",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "forbidden",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "forbidden",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FilesystemsByMediaDumpFile",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FilesystemsByMediaDumpFile",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FilesystemsByLogicalPartition",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FilesystemsByLogicalPartition",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Filesystems",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Filesystems",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FilesByFilesystem",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FilesByFilesystem",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Files",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Files",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FileDataStreamsByStandaloneFile",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FileDataStreamsByStandaloneFile",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FileDataStreamsByMediaFile",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FileDataStreamsByMediaFile",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "FileDataStreams",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "FileDataStreams",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Dumps",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Dumps",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DumpHardwares",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DumpHardwares",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "OriginalExtension",
|
|||
|
|
table: "DocumentScans",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentScans",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentsByMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentsByMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentsByMachineFamily",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentsByMachineFamily",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Synopsis",
|
|||
|
|
table: "Documents",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 262144,
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldMaxLength: 262144,
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Documents",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Documents",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentPeople",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentPeople",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "DocumentCompanies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "DocumentCompanies",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CurrenciesPegging",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CurrenciesPegging",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CurrenciesInflation",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CurrenciesInflation",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Text",
|
|||
|
|
table: "CompanyDescriptions",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 262144,
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldMaxLength: 262144)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Html",
|
|||
|
|
table: "CompanyDescriptions",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 262144,
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldMaxLength: 262144,
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompanyDescriptions",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompanyDescriptions",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "company_logos",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "company_logos",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesBySoftwareVersion",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesBySoftwareVersion",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesBySoftwareVariant",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesBySoftwareVariant",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesBySoftwareFamily",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<ulong>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesBySoftwareFamily",
|
|||
|
|
type: "bigint unsigned",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(ulong),
|
|||
|
|
oldType: "bigint unsigned")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesByMagazines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesByMagazines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesByDocuments",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesByDocuments",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "CompaniesByBooks",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "CompaniesByBooks",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "LegalName",
|
|||
|
|
table: "companies",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "companies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "companies",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "browser_tests",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "id",
|
|||
|
|
table: "browser_tests",
|
|||
|
|
type: "int(11)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int(11)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "OriginalExtension",
|
|||
|
|
table: "BookScans",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "BookScans",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "BooksByMachines",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "BooksByMachines",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "BooksByMachineFamilies",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "BooksByMachineFamilies",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Synopsis",
|
|||
|
|
table: "Books",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
maxLength: 262144,
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldMaxLength: 262144,
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Books",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Books",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|||
|
|
name: "CreatedOn",
|
|||
|
|
table: "Audit",
|
|||
|
|
type: "datetime(6)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(DateTime),
|
|||
|
|
oldType: "datetime(6)")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<long>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "Audit",
|
|||
|
|
type: "bigint",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(long),
|
|||
|
|
oldType: "bigint")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Value",
|
|||
|
|
table: "AspNetUserTokens",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Name",
|
|||
|
|
table: "AspNetUserTokens",
|
|||
|
|
type: "varchar(255)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(128)",
|
|||
|
|
oldMaxLength: 128)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "LoginProvider",
|
|||
|
|
table: "AspNetUserTokens",
|
|||
|
|
type: "varchar(255)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(128)",
|
|||
|
|
oldMaxLength: 128)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "SecurityStamp",
|
|||
|
|
table: "AspNetUsers",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "PhoneNumber",
|
|||
|
|
table: "AspNetUsers",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "PasswordHash",
|
|||
|
|
table: "AspNetUsers",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ConcurrencyStamp",
|
|||
|
|
table: "AspNetUsers",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ProviderDisplayName",
|
|||
|
|
table: "AspNetUserLogins",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ProviderKey",
|
|||
|
|
table: "AspNetUserLogins",
|
|||
|
|
type: "varchar(255)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(128)",
|
|||
|
|
oldMaxLength: 128)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "LoginProvider",
|
|||
|
|
table: "AspNetUserLogins",
|
|||
|
|
type: "varchar(255)",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "varchar(128)",
|
|||
|
|
oldMaxLength: 128)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ClaimValue",
|
|||
|
|
table: "AspNetUserClaims",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ClaimType",
|
|||
|
|
table: "AspNetUserClaims",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "AspNetUserClaims",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "Description",
|
|||
|
|
table: "AspNetRoles",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ConcurrencyStamp",
|
|||
|
|
table: "AspNetRoles",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ClaimValue",
|
|||
|
|
table: "AspNetRoleClaims",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<string>(
|
|||
|
|
name: "ClaimType",
|
|||
|
|
table: "AspNetRoleClaims",
|
|||
|
|
type: "longtext CHARACTER SET utf8mb4",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(string),
|
|||
|
|
oldType: "longtext",
|
|||
|
|
oldNullable: true)
|
|||
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|
|||
|
|
migrationBuilder.AlterColumn<int>(
|
|||
|
|
name: "Id",
|
|||
|
|
table: "AspNetRoleClaims",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: false,
|
|||
|
|
oldClrType: typeof(int),
|
|||
|
|
oldType: "int")
|
|||
|
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|