feat(Backend): update API gateway and websocket hubs
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace FinlyticBackend.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class AddSelectedTickerToFavorites : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "SelectedTicker",
|
||||
table: "user_favorite_assets",
|
||||
type: "character varying(50)",
|
||||
maxLength: 50,
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "SelectedTicker",
|
||||
table: "user_favorite_assets");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user