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

20190909074136_UnitNumber.cs 601B

12345678910111213141516171819202122
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace UnivateProperties_API.Migrations
  3. {
  4. public partial class UnitNumber : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.AddColumn<string>(
  9. name: "UnitNumber",
  10. table: "Weeks",
  11. nullable: true);
  12. }
  13. protected override void Down(MigrationBuilder migrationBuilder)
  14. {
  15. migrationBuilder.DropColumn(
  16. name: "UnitNumber",
  17. table: "Weeks");
  18. }
  19. }
  20. }