using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Iceshrimp.Backend.Core.Database.Migrations { /// public partial class RenameNoteBookmarksTable : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "createdAt", table: "note_favorite", type: "timestamp with time zone", nullable: false, comment: "The created date of the NoteBookmark.", oldClrType: typeof(DateTime), oldType: "timestamp with time zone", oldComment: "The created date of the NoteFavorite."); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "createdAt", table: "note_favorite", type: "timestamp with time zone", nullable: false, comment: "The created date of the NoteFavorite.", oldClrType: typeof(DateTime), oldType: "timestamp with time zone", oldComment: "The created date of the NoteBookmark."); } } }