You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -195,6 +195,22 @@ Schema::create('table', function (Blueprint $table) {
195
195
196
196
```
197
197
198
+
### Sort Keys - Columnstore variables
199
+
200
+
Sometimes you may want to customize your [columstore variables](https://docs.singlestore.com/managed-service/en/create-a-database/physical-database-schema-design/procedures-for-physical-database-schema-design/configuring-the-columnstore-to-work-effectively.html) individually per table. You can do it by appending `with` fluently to the `sortKey` definition.
201
+
202
+
```php
203
+
Schema::create('table', function (Blueprint $table) {
0 commit comments