Home / Function/ CustomPostgresVersionInput() — supabase Function Reference

CustomPostgresVersionInput() — supabase Function Reference

Architecture documentation for the CustomPostgresVersionInput() function in CustomPostgresVersionInput.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/ProjectCreation/CustomPostgresVersionInput.tsx lines 12–32

export const CustomPostgresVersionInput = ({ form }: CustomPostgresVersionInputProps) => {
  return (
    <Panel.Content>
      <FormField_Shadcn_
        control={form.control}
        name="postgresVersion"
        render={({ field }) => (
          <FormItemLayout
            label="Custom Postgres version"
            layout="horizontal"
            description="Specify a custom version of Postgres (defaults to the latest). This is only applicable for local/staging projects."
          >
            <FormControl_Shadcn_>
              <Input_Shadcn_ placeholder="Postgres version" {...field} autoComplete="off" />
            </FormControl_Shadcn_>
          </FormItemLayout>
        )}
      />
    </Panel.Content>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free