using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MareSynchronosServer.Migrations { /// public partial class GroupTemporary : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "expires_at", table: "groups", type: "timestamp with time zone", nullable: true); migrationBuilder.AddColumn( name: "is_temporary", table: "groups", type: "boolean", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "expires_at", table: "groups"); migrationBuilder.DropColumn( name: "is_temporary", table: "groups"); } } }