BusinessLogic.Migrations.BGGGameDefinition_Dates.Up C# (CSharp) Method

Up() public method

public Up ( ) : void
return void
        public override void Up()
        {
            AddColumn("dbo.BoardGameGeekGameDefinition", "DateCreated", c => c.DateTime(nullable: false, defaultValue: DateTime.UtcNow));
            AddColumn("dbo.BoardGameGeekGameDefinition", "DateUpdated", c => c.DateTime(nullable: false, defaultValue: DateTime.UtcNow));
        }
BGGGameDefinition_Dates