Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

20221024122405_Adding message editing.cs 702B

1234567891011121314151617181920212223242526
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace SecureSharing.Data.Migrations
  4. {
  5. public partial class Addingmessageediting : Migration
  6. {
  7. protected override void Up(MigrationBuilder migrationBuilder)
  8. {
  9. migrationBuilder.AddColumn<bool>(
  10. name: "AllowEditing",
  11. table: "Messages",
  12. type: "bit",
  13. nullable: false,
  14. defaultValue: false);
  15. }
  16. protected override void Down(MigrationBuilder migrationBuilder)
  17. {
  18. migrationBuilder.DropColumn(
  19. name: "AllowEditing",
  20. table: "Messages");
  21. }
  22. }
  23. }