Any way to create a partitioned table (PG)

I wasn't able to find anything in the docs or in intellisense. Presumably for partitioned tables I need to break into an sql.raw and just do it that way? Thanks in advance
Solution:
).modifyEnd(sql` PARTITION BY HASH (user_id);`)
).modifyEnd(sql` PARTITION BY HASH (user_id);`)
Can be used...
Jump to solution
1 Reply
Solution
Tim Lonsdale
Tim Lonsdale3w ago
).modifyEnd(sql` PARTITION BY HASH (user_id);`)
).modifyEnd(sql` PARTITION BY HASH (user_id);`)
Can be used

Did you find this page helpful?