using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Mizuki.Migrations
{
///
public partial class Adjusttimestamp : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "TimeOfUpload",
table: "Uploads",
type: "INTEGER",
nullable: false,
oldClrType: typeof(DateTimeOffset),
oldType: "TEXT");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "TimeOfUpload",
table: "Uploads",
type: "TEXT",
nullable: false,
oldClrType: typeof(long),
oldType: "INTEGER");
}
}
}