Репозиторий хранил фронтенд в CRLF, а часть бэкенда — вперемешку, хотя CI и Docker-сборка работают под Linux. Прибиваем LF атрибутом `* text=auto eol=lf` и разово нормализуем дерево, чтобы форматтеры не переписывали файлы целиком на каждом прогоне. Коммит чисто механический: изменений содержимого нет, только концы строк. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
55 lines
1.8 KiB
C#
55 lines
1.8 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace TeleWave.Infrastructure.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class ImageRegistry : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Images",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Category = table.Column<int>(type: "integer", nullable: false),
|
|
FileExtension = table.Column<string>(
|
|
type: "character varying(16)",
|
|
maxLength: 16,
|
|
nullable: false
|
|
),
|
|
OriginalFileName = table.Column<string>(
|
|
type: "character varying(512)",
|
|
maxLength: 512,
|
|
nullable: true
|
|
),
|
|
CreatedAt = table.Column<DateTimeOffset>(
|
|
type: "timestamp with time zone",
|
|
nullable: false
|
|
),
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Images", x => x.Id);
|
|
}
|
|
);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Images_Category_CreatedAt",
|
|
table: "Images",
|
|
columns: new[] { "Category", "CreatedAt" }
|
|
);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(name: "Images");
|
|
}
|
|
}
|
|
}
|