I'd love it if schema_plus_tables added support for composite primary keys such that we could create them in a migration or in a schema.rb via ``` ruby create_table "my_table", primary_key: ["one", "two"], force: true do |t| ```