| 1234567891011121314151617181920212223242526 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Content.Server.Database.Migrations.Sqlite
- {
- public partial class AddSpecies : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "species",
- table: "profile",
- type: "TEXT",
- nullable: false,
- defaultValue: "");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "species",
- table: "profile");
- }
- }
- }
|