BeerConf.Migrations.Migration201111131404.Up C# (CSharp) Method

Up() public method

public Up ( ) : void
return void
        public override void Up()
        {
            Create.Table("hibernate_unique_key")
                .WithColumn("next_hi").AsInt32().PrimaryKey().NotNullable();
            Insert.IntoTable("hibernate_unique_key").Row(new { next_hi = 0 });
        }
Migration201111131404