using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ConcursoProjetos.Migrations
{
///
public partial class projetocodigo2 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Codigo",
table: "Projeto",
type: "uniqueidentifier",
nullable: false,
oldClrType: typeof(string),
oldType: "nvarchar(max)");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Codigo",
table: "Projeto",
type: "nvarchar(max)",
nullable: false,
oldClrType: typeof(Guid),
oldType: "uniqueidentifier");
}
}
}