| 1234567891011121314151617181920212223242526272829303132333435 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace Content.Server.Database.Migrations.Postgres
- {
- public partial class ClothingAndPronouns : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "clothing",
- table: "profile",
- type: "text",
- nullable: false,
- defaultValue: "");
- migrationBuilder.AddColumn<string>(
- name: "gender",
- table: "profile",
- type: "text",
- nullable: false,
- defaultValue: "");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "clothing",
- table: "profile");
- migrationBuilder.DropColumn(
- name: "gender",
- table: "profile");
- }
- }
- }
|