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