using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LightlessSyncServer.Migrations { /// public partial class ShareLocation : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "share_location_until", table: "user_permission_sets", type: "timestamp with time zone", nullable: false, defaultValue: new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0))); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "share_location_until", table: "user_permission_sets"); } } }