| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
- #nullable disable
- namespace Content.Server.Database.Migrations.Postgres
- {
- public partial class UploadedResourcesLog : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.CreateTable(
- name: "uploaded_resource_log",
- columns: table => new
- {
- uploaded_resource_log_id = table.Column<int>(type: "integer", nullable: false)
- .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
- date = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
- user_id = table.Column<Guid>(type: "uuid", nullable: false),
- path = table.Column<string>(type: "text", nullable: false),
- data = table.Column<byte[]>(type: "bytea", nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_uploaded_resource_log", x => x.uploaded_resource_log_id);
- });
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "uploaded_resource_log");
- }
- }
- }
|