12345678910111213141516171819202122232425262728293031 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace ProductionLineMonitor.Web.Migrations
- {
- public partial class _202211101352 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<double>(
- name: "TT",
- table: "MachineStatistics",
- type: "REAL",
- nullable: true,
- oldClrType: typeof(int),
- oldType: "INTEGER",
- oldNullable: true);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<int>(
- name: "TT",
- table: "MachineStatistics",
- type: "INTEGER",
- nullable: true,
- oldClrType: typeof(double),
- oldType: "REAL",
- oldNullable: true);
- }
- }
- }
|