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