using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace UWLib.Migrations
{
///
public partial class ScrapedLinks : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "ScrapedLinks",
columns: table => new
{
Url = table.Column(type: "TEXT", nullable: false),
LastScrape = table.Column(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_ScrapedLinks", x => x.Url);
});
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "ScrapedLinks");
}
}
}