選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20200608133952_003.cs 625B

1234567891011121314151617181920212223
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace ProRestaurant.Migrations
  3. {
  4. public partial class _003 : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.DropColumn(
  9. name: "Chain",
  10. table: "Restaurants");
  11. }
  12. protected override void Down(MigrationBuilder migrationBuilder)
  13. {
  14. migrationBuilder.AddColumn<bool>(
  15. name: "Chain",
  16. table: "Restaurants",
  17. nullable: false,
  18. defaultValue: false);
  19. }
  20. }
  21. }