✨ Open fund total amount of splits
This commit is contained in:
2726
DysonNetwork.Pass/Migrations/20251116163407_OpenFundsTotalSplits.Designer.cs
generated
Normal file
2726
DysonNetwork.Pass/Migrations/20251116163407_OpenFundsTotalSplits.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,29 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace DysonNetwork.Pass.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class OpenFundsTotalSplits : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "amount_of_splits",
|
||||
table: "wallet_funds",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
defaultValue: 0);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "amount_of_splits",
|
||||
table: "wallet_funds");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1712,6 +1712,10 @@ namespace DysonNetwork.Pass.Migrations
|
||||
.HasColumnType("uuid")
|
||||
.HasColumnName("id");
|
||||
|
||||
b.Property<int>("AmountOfSplits")
|
||||
.HasColumnType("integer")
|
||||
.HasColumnName("amount_of_splits");
|
||||
|
||||
b.Property<Instant>("CreatedAt")
|
||||
.HasColumnType("timestamp with time zone")
|
||||
.HasColumnName("created_at");
|
||||
|
||||
Reference in New Issue
Block a user