BusinessLogic.Migrations.BGGGameDefinition_Dates.Up C# (CSharp) Метод

Up() публичный Метод

public Up ( ) : void
Результат 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