many fixes and improvements - rework for modules/ and common/
feat(emailer): add Postmark and Resend providers
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Hutopy.Modules.Creators.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class AddStripe : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "AcceptDonation",
|
||||
schema: "Creators",
|
||||
table: "Creators");
|
||||
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "IsStripeOnboardingComplete",
|
||||
schema: "Creators",
|
||||
table: "Creators",
|
||||
newName: "IsStripeDetailsSubmitted");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "IsStripeDetailsSubmitted",
|
||||
schema: "Creators",
|
||||
table: "Creators",
|
||||
newName: "IsStripeOnboardingComplete");
|
||||
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "AcceptDonation",
|
||||
schema: "Creators",
|
||||
table: "Creators",
|
||||
type: "boolean",
|
||||
nullable: false,
|
||||
defaultValue: false);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user