summaryrefslogtreecommitdiffstats
path: root/src/Migrations/20230112230354_InitialCreate.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Migrations/20230112230354_InitialCreate.cs')
-rw-r--r--src/Migrations/20230112230354_InitialCreate.cs68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/Migrations/20230112230354_InitialCreate.cs b/src/Migrations/20230112230354_InitialCreate.cs
new file mode 100644
index 0000000..97f9c36
--- /dev/null
+++ b/src/Migrations/20230112230354_InitialCreate.cs
@@ -0,0 +1,68 @@
+using System;
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace BlobBin.Migrations
+{
+ /// <inheritdoc />
+ public partial class InitialCreate : Migration
+ {
+ /// <inheritdoc />
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.CreateTable(
+ name: "Files",
+ columns: table => new
+ {
+ Id = table.Column<Guid>(type: "TEXT", nullable: false),
+ Name = table.Column<string>(type: "TEXT", nullable: true),
+ Length = table.Column<long>(type: "INTEGER", nullable: false),
+ PublicId = table.Column<string>(type: "TEXT", nullable: false),
+ CreatedAt = table.Column<DateTime>(type: "TEXT", nullable: false),
+ CreatedBy = table.Column<string>(type: "TEXT", nullable: false),
+ DeletedAt = table.Column<DateTime>(type: "TEXT", nullable: true),
+ PasswordHash = table.Column<string>(type: "TEXT", nullable: true),
+ Singleton = table.Column<bool>(type: "INTEGER", nullable: false),
+ AutoDeleteAfter = table.Column<string>(type: "TEXT", nullable: true),
+ MimeType = table.Column<string>(type: "TEXT", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Files", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Pastes",
+ columns: table => new
+ {
+ Id = table.Column<Guid>(type: "TEXT", nullable: false),
+ Name = table.Column<string>(type: "TEXT", nullable: true),
+ Content = table.Column<string>(type: "TEXT", nullable: true),
+ Length = table.Column<long>(type: "INTEGER", nullable: false),
+ PublicId = table.Column<string>(type: "TEXT", nullable: false),
+ CreatedAt = table.Column<DateTime>(type: "TEXT", nullable: false),
+ CreatedBy = table.Column<string>(type: "TEXT", nullable: false),
+ DeletedAt = table.Column<DateTime>(type: "TEXT", nullable: true),
+ PasswordHash = table.Column<string>(type: "TEXT", nullable: true),
+ Singleton = table.Column<bool>(type: "INTEGER", nullable: false),
+ AutoDeleteAfter = table.Column<string>(type: "TEXT", nullable: true),
+ MimeType = table.Column<string>(type: "TEXT", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Pastes", x => x.Id);
+ });
+ }
+
+ /// <inheritdoc />
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropTable(
+ name: "Files");
+
+ migrationBuilder.DropTable(
+ name: "Pastes");
+ }
+ }
+}