Enhancement hasn't been filed before.
Describe the enhancement you want to request
The documentation for the drizzle.config.ts > migrations section is missing the allowed values for the prefix attribute in the migrations object type definition. The structure should be documented as:
{ table: string, schema: string; prefix: "index" | "timestamp" | "supabase" | "unix" | "none" }
The default value remains { table: "__drizzle_migrations", schema: "drizzle", prefix: "index" }.
Please update the documentation to reflect the allowed values for the prefix attribute for better clarity on migrations configuration.
Enhancement hasn't been filed before.
Describe the enhancement you want to request
The documentation for the
drizzle.config.ts > migrationssection is missing the allowed values for theprefixattribute in the migrations object type definition. The structure should be documented as:The default value remains
{ table: "__drizzle_migrations", schema: "drizzle", prefix: "index" }.Please update the documentation to reflect the allowed values for the
prefixattribute for better clarity on migrations configuration.