| 1234567891011121314151617181920212223242526272829 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Content.Server.Database.Migrations.Postgres
- {
- /// <inheritdoc />
- public partial class RemoveLastReadRules : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "last_read_rules",
- table: "player");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<DateTime>(
- name: "last_read_rules",
- table: "player",
- type: "timestamp with time zone",
- nullable: true);
- }
- }
- }
|