feat: new migrator

This commit is contained in:
sam 2024-12-16 21:38:38 +01:00
parent b36b54f9e6
commit 79b8c4799e
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
17 changed files with 621 additions and 917 deletions

View file

@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Foxnouns.Backend\Foxnouns.Backend.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35"/>
<PackageReference Include="Npgsql" Version="9.0.2"/>
<PackageReference Include="Npgsql.NodaTime" Version="9.0.2"/>
</ItemGroup>
</Project>