Thomas Mathys
Results
1
comments of
Thomas Mathys
What if the `Create.Table` syntax was extended with an API similar to the existing one to create foreign keys, so that one can do: ``` Create.Table("myTable") .WithColumn("a").AsString() .WithColumn("b").AsString() .WithForeignKey() //...