FillFactorParameter
PostgreSQL fillfactor parameter.
Specifies the percentage of space that table pages should be filled with data. The remaining space is reserved for updates to reduce table bloat.
Valid range: 10-100
Example:
object Users : Table("users") {
override val storageParameters = listOf(Table.FillFactorParameter(70))
}Content copied to clipboard
Generates: fillfactor=70 (used in WITH (fillfactor=70))