using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Migrations.AppDb { /// public partial class AddChannelYouTubeLastSyncedAt : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "YouTubeLastSyncedAt", table: "Channel", type: "datetime2", nullable: true, comment: "YouTube API 마지막 동기화 시각(UTC) — 30일 정책 enforcement"); migrationBuilder.CreateIndex( name: "IX_Channel_YouTubeLastSyncedAt", table: "Channel", column: "YouTubeLastSyncedAt"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "IX_Channel_YouTubeLastSyncedAt", table: "Channel"); migrationBuilder.DropColumn( name: "YouTubeLastSyncedAt", table: "Channel"); } } }