30 lines
782 B
C#
30 lines
782 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace DysonNetwork.Drive.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class RemoveUploadedTo : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "uploaded_to",
|
|
table: "files");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "uploaded_to",
|
|
table: "files",
|
|
type: "character varying(128)",
|
|
maxLength: 128,
|
|
nullable: true);
|
|
}
|
|
}
|
|
}
|