using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Content.Server.Database.Migrations.Sqlite { /// public partial class EvilBarks : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "bark_pitch", table: "profile", type: "REAL", nullable: false, defaultValue: 1.0f); migrationBuilder.AddColumn( name: "bark_proto", table: "profile", type: "TEXT", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "high_bark_var", table: "profile", type: "REAL", nullable: false, defaultValue: 0.5f); migrationBuilder.AddColumn( name: "low_bark_var", table: "profile", type: "REAL", nullable: false, defaultValue: 0.1f); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "bark_pitch", table: "profile"); migrationBuilder.DropColumn( name: "bark_proto", table: "profile"); migrationBuilder.DropColumn( name: "high_bark_var", table: "profile"); migrationBuilder.DropColumn( name: "low_bark_var", table: "profile"); } } }