Files
gerencia-projetos/GerenciaProjetos/Migrations/20190922115947_2.cs
2019-09-22 09:00:10 -03:00

25 lines
698 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace GerenciaProjetos.Migrations
{
public partial class _2 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<TimeSpan>(
name: "TempoGasto",
table: "DesenvolvedorRequisito",
nullable: false,
defaultValue: new TimeSpan(0, 0, 0, 0, 0));
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "TempoGasto",
table: "DesenvolvedorRequisito");
}
}
}