using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BlobBin.Migrations
{
///
public partial class InitialCreate : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Files",
columns: table => new
{
Id = table.Column(type: "TEXT", nullable: false),
Name = table.Column(type: "TEXT", nullable: true),
Length = table.Column(type: "INTEGER", nullable: false),
PublicId = table.Column(type: "TEXT", nullable: false),
CreatedAt = table.Column(type: "TEXT", nullable: false),
CreatedBy = table.Column(type: "TEXT", nullable: false),
DeletedAt = table.Column(type: "TEXT", nullable: true),
PasswordHash = table.Column(type: "TEXT", nullable: true),
Singleton = table.Column(type: "INTEGER", nullable: false),
AutoDeleteAfter = table.Column(type: "TEXT", nullable: true),
MimeType = table.Column(type: "TEXT", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_Files", x => x.Id);
});
migrationBuilder.CreateTable(
name: "Pastes",
columns: table => new
{
Id = table.Column(type: "TEXT", nullable: false),
Name = table.Column(type: "TEXT", nullable: true),
Content = table.Column(type: "TEXT", nullable: true),
Length = table.Column(type: "INTEGER", nullable: false),
PublicId = table.Column(type: "TEXT", nullable: false),
CreatedAt = table.Column(type: "TEXT", nullable: false),
CreatedBy = table.Column(type: "TEXT", nullable: false),
DeletedAt = table.Column(type: "TEXT", nullable: true),
PasswordHash = table.Column(type: "TEXT", nullable: true),
Singleton = table.Column(type: "INTEGER", nullable: false),
AutoDeleteAfter = table.Column(type: "TEXT", nullable: true),
MimeType = table.Column(type: "TEXT", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_Pastes", x => x.Id);
});
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Files");
migrationBuilder.DropTable(
name: "Pastes");
}
}
}