public static FluentColumn AutoIncrement(string name)
            {
                var fc = SColumn.Int32(name);

                fc.Object.IsAutoIncrement = true;
                return(fc);
            }
 public static FluentColumn Int32(string name)
 {
     return(SColumn.Int32(name));
 }