using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EchoHub.Server.Data.Migrations { /// public partial class AddChannelIsPublic : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsPublic", table: "Channels", type: "INTEGER", nullable: false, defaultValue: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsPublic", table: "Channels"); } } }