diff --git a/src/ApplicationPhase/config.ts b/src/ApplicationPhase/config.ts index f2f3e22..50f4760 100644 --- a/src/ApplicationPhase/config.ts +++ b/src/ApplicationPhase/config.ts @@ -45,11 +45,12 @@ const phaseFields: Field[] = [ export const ApplicationPhase: GlobalConfig = { slug: 'application-phase', + label: 'Bewerbungsphase', access: { read: () => true, }, admin: { - group: 'Site Settings', + group: 'Website', }, fields: [ { diff --git a/src/Footer/config.ts b/src/Footer/config.ts index b716555..4368dc7 100644 --- a/src/Footer/config.ts +++ b/src/Footer/config.ts @@ -25,10 +25,12 @@ const socialFields = [ export const Footer: GlobalConfig = { slug: 'footer', + label: 'Fußbereich', access: { read: () => true, }, admin: { + group: 'Website', livePreview: { url: () => '/', }, diff --git a/src/Header/Nav/index.tsx b/src/Header/Nav/index.tsx index 8df3296..1b71eda 100644 --- a/src/Header/Nav/index.tsx +++ b/src/Header/Nav/index.tsx @@ -5,7 +5,6 @@ import React from 'react' import type { Header as HeaderType } from '@/payload-types' import Link from 'next/link' -import { SearchIcon } from 'lucide-react' export const HeaderNav: React.FC<{ data: HeaderType }> = ({ data }) => { const navItems = data?.navItems || [] @@ -15,10 +14,6 @@ export const HeaderNav: React.FC<{ data: HeaderType }> = ({ data }) => { {navItems.map((item, i) => { return {item.label} })} - - Search - - ) } diff --git a/src/Header/config.ts b/src/Header/config.ts index 2cf11cd..20b2e69 100644 --- a/src/Header/config.ts +++ b/src/Header/config.ts @@ -25,10 +25,12 @@ const socialFields = [ export const Header: GlobalConfig = { slug: 'header', + label: 'Kopfbereich', access: { read: () => true, }, admin: { + group: 'Website', livePreview: { url: () => '/', }, diff --git a/src/SiteSettings/config.ts b/src/SiteSettings/config.ts index 1e9fb0d..452a541 100644 --- a/src/SiteSettings/config.ts +++ b/src/SiteSettings/config.ts @@ -4,11 +4,12 @@ import { defaultSiteSettings } from '@/spa/siteSettings' export const SiteSettings: GlobalConfig = { slug: 'site-settings', + label: 'Website-Einstellungen', access: { read: () => true, }, admin: { - group: 'Site Settings', + group: 'Website', }, fields: [ { diff --git a/src/app/(frontend)/(sitemaps)/pages-sitemap.xml/route.ts b/src/app/(frontend)/(sitemaps)/pages-sitemap.xml/route.ts index c73e1ea..f7b9652 100644 --- a/src/app/(frontend)/(sitemaps)/pages-sitemap.xml/route.ts +++ b/src/app/(frontend)/(sitemaps)/pages-sitemap.xml/route.ts @@ -31,17 +31,6 @@ const getPagesSitemap = unstable_cache( const dateFallback = new Date().toISOString() - const defaultSitemap = [ - { - loc: `${SITE_URL}/search`, - lastmod: dateFallback, - }, - { - loc: `${SITE_URL}/posts`, - lastmod: dateFallback, - }, - ] - const sitemap = results.docs ? results.docs .filter((page) => Boolean(page?.slug)) @@ -53,7 +42,7 @@ const getPagesSitemap = unstable_cache( }) : [] - return [...defaultSitemap, ...sitemap] + return sitemap }, ['pages-sitemap'], { diff --git a/src/app/(frontend)/[[...slug]]/page.tsx b/src/app/(frontend)/[[...slug]]/page.tsx index 876206a..21ab504 100644 --- a/src/app/(frontend)/[[...slug]]/page.tsx +++ b/src/app/(frontend)/[[...slug]]/page.tsx @@ -7,7 +7,7 @@ import { notFound } from 'next/navigation' import NextApp from '@/spa/NextApp' import { normalizeApplicationPhaseData, type SpaApplicationPhaseData } from '@/spa/applicationPhase' import { normalizeFooterData, normalizeHeaderData } from '@/spa/cmsNavigation' -import type { CmsRouteDoc } from '@/spa/cmsRoute' +import type { CmsRouteCollection, CmsRouteDoc } from '@/spa/cmsRoute' import { normalizeSiteSettings, type SpaSiteSettingsData } from '@/spa/siteSettings' export const dynamic = 'force-dynamic' @@ -16,7 +16,7 @@ type Args = { params: Promise<{ slug?: string[] }> } -type RouteCollection = 'pages' | 'posts' | 'events' | 'preistraeger' +type RouteCollection = Exclude function routeTarget(pathname: string): { collection: RouteCollection; slug: string } { const parts = pathname.split('/').filter(Boolean) @@ -57,7 +57,7 @@ async function findRouteDoc(payload: Awaited>, pat return doc ? { collection: target.collection, doc } : undefined } -async function findList(payload: Awaited>, collection: RouteCollection, draft: boolean) { +async function findList(payload: Awaited>, collection: CmsRouteCollection, draft: boolean) { const result = await payload.find({ collection, depth: 1, @@ -65,25 +65,33 @@ async function findList(payload: Awaited>, collect overrideAccess: draft, limit: 300, pagination: false, + ...(collection === 'partners' ? { sort: 'sortOrder' } : {}), }) return result.docs } -async function findHomePage(payload: Awaited>, draft: boolean) { +async function findSupportPages(payload: Awaited>, draft: boolean) { const result = await payload.find({ collection: 'pages', depth: 1, draft, overrideAccess: draft, - limit: 1, + limit: 10, pagination: false, where: { - or: [{ spaPath: { equals: '/' } }, { slug: { equals: 'startseite' } }, { slug: { equals: 'home' } }], + or: [ + { spaPath: { equals: '/' } }, + { slug: { equals: 'startseite' } }, + { slug: { equals: 'home' } }, + { spaPath: { equals: '/netzwerk' } }, + { slug: { equals: 'netzwerk' } }, + { slug: { equals: 'network' } }, + ], }, }) - return result.docs[0] + return result.docs } export default async function Page({ params }: Args) { @@ -91,16 +99,17 @@ export default async function Page({ params }: Args) { const pathname = `/${slug.join('/')}`.replace(/\/$/, '') || '/' const payload = await getPayload({ config: configPromise }) const { isEnabled: draft } = await draftMode() - const [header, footer, siteSettings, applicationPhase, route, homePage, preistraeger, events, posts] = await Promise.all([ + const [header, footer, siteSettings, applicationPhase, route, supportPages, preistraeger, events, posts, partners] = await Promise.all([ payload.findGlobal({ slug: 'header', depth: 1 }).catch(() => undefined), payload.findGlobal({ slug: 'footer', depth: 1 }).catch(() => undefined), payload.findGlobal({ slug: 'site-settings', depth: 1 }).catch(() => undefined), payload.findGlobal({ slug: 'application-phase', depth: 0 }).catch(() => undefined), findRouteDoc(payload, pathname, draft), - findHomePage(payload, draft).catch(() => undefined), + findSupportPages(payload, draft).catch(() => []), findList(payload, 'preistraeger', draft).catch(() => []), findList(payload, 'events', draft).catch(() => []), findList(payload, 'posts', draft).catch(() => []), + findList(payload, 'partners', draft).catch(() => []), ]) if (!route) notFound() @@ -116,10 +125,11 @@ export default async function Page({ params }: Args) { collection: route.collection, doc: route.doc as unknown as CmsRouteDoc, lists: { - pages: homePage ? [homePage as unknown as CmsRouteDoc] : [], + pages: supportPages as unknown as CmsRouteDoc[], preistraeger: preistraeger as unknown as CmsRouteDoc[], events: events as unknown as CmsRouteDoc[], posts: posts as unknown as CmsRouteDoc[], + partners: partners as unknown as CmsRouteDoc[], }, }} /> diff --git a/src/app/(payload)/admin/importMap.js b/src/app/(payload)/admin/importMap.js index 2e7d273..a9aab13 100644 --- a/src/app/(payload)/admin/importMap.js +++ b/src/app/(payload)/admin/importMap.js @@ -19,8 +19,6 @@ import { HorizontalRuleFeatureClient as HorizontalRuleFeatureClient_e70f5e05f09f import { BlocksFeatureClient as BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client' import { FolderTableCell as FolderTableCell_f9c02e79a4aed9a3924487c0cd4cafb1 } from '@payloadcms/next/rsc' import { FolderField as FolderField_f9c02e79a4aed9a3924487c0cd4cafb1 } from '@payloadcms/next/rsc' -import { LinkToDoc as LinkToDoc_aead06e4cbf6b2620c5c51c9ab283634 } from '@payloadcms/plugin-search/client' -import { ReindexButton as ReindexButton_aead06e4cbf6b2620c5c51c9ab283634 } from '@payloadcms/plugin-search/client' import { FolderTypeField as FolderTypeField_2b8867833a34864a02ddf429b0728a40 } from '@payloadcms/next/client' import { RowLabel as RowLabel_ec255a65fa6fa8d1faeb09cf35284224 } from '@/Header/RowLabel' import { RowLabel as RowLabel_1f6ff6ff633e3695d348f4f3c58f1466 } from '@/Footer/RowLabel' @@ -51,8 +49,6 @@ export const importMap = { "@payloadcms/richtext-lexical/client#BlocksFeatureClient": BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864, "@payloadcms/next/rsc#FolderTableCell": FolderTableCell_f9c02e79a4aed9a3924487c0cd4cafb1, "@payloadcms/next/rsc#FolderField": FolderField_f9c02e79a4aed9a3924487c0cd4cafb1, - "@payloadcms/plugin-search/client#LinkToDoc": LinkToDoc_aead06e4cbf6b2620c5c51c9ab283634, - "@payloadcms/plugin-search/client#ReindexButton": ReindexButton_aead06e4cbf6b2620c5c51c9ab283634, "@payloadcms/next/client#FolderTypeField": FolderTypeField_2b8867833a34864a02ddf429b0728a40, "@/Header/RowLabel#RowLabel": RowLabel_ec255a65fa6fa8d1faeb09cf35284224, "@/Footer/RowLabel#RowLabel": RowLabel_1f6ff6ff633e3695d348f4f3c58f1466, diff --git a/src/blocks/ArchiveBlock/Component.tsx b/src/blocks/ArchiveBlock/Component.tsx deleted file mode 100644 index 48a57ec..0000000 --- a/src/blocks/ArchiveBlock/Component.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import type { Post, ArchiveBlock as ArchiveBlockProps } from '@/payload-types' - -import configPromise from '@payload-config' -import { getPayload } from 'payload' -import React from 'react' -import RichText from '@/components/RichText' - -import { CollectionArchive } from '@/components/CollectionArchive' - -export const ArchiveBlock: React.FC< - ArchiveBlockProps & { - id?: string - } -> = async (props) => { - const { id, categories, introContent, limit: limitFromProps, populateBy, selectedDocs } = props - - const limit = limitFromProps || 3 - - let posts: Post[] = [] - - if (populateBy === 'collection') { - const payload = await getPayload({ config: configPromise }) - - const flattenedCategories = categories?.map((category) => { - if (typeof category === 'object') return category.id - else return category - }) - - const fetchedPosts = await payload.find({ - collection: 'posts', - depth: 1, - limit, - ...(flattenedCategories && flattenedCategories.length > 0 - ? { - where: { - categories: { - in: flattenedCategories, - }, - }, - } - : {}), - }) - - posts = fetchedPosts.docs - } else { - if (selectedDocs?.length) { - const filteredSelectedPosts = selectedDocs.map((post) => { - if (typeof post.value === 'object') return post.value - }) as Post[] - - posts = filteredSelectedPosts - } - } - - return ( -
- {introContent && ( -
- -
- )} - -
- ) -} diff --git a/src/blocks/ArchiveBlock/config.ts b/src/blocks/ArchiveBlock/config.ts deleted file mode 100644 index f87a376..0000000 --- a/src/blocks/ArchiveBlock/config.ts +++ /dev/null @@ -1,94 +0,0 @@ -import type { Block } from 'payload' - -import { - FixedToolbarFeature, - HeadingFeature, - InlineToolbarFeature, - lexicalEditor, -} from '@payloadcms/richtext-lexical' - -export const Archive: Block = { - slug: 'archive', - interfaceName: 'ArchiveBlock', - fields: [ - { - name: 'introContent', - type: 'richText', - editor: lexicalEditor({ - features: ({ rootFeatures }) => { - return [ - ...rootFeatures, - HeadingFeature({ enabledHeadingSizes: ['h1', 'h2', 'h3', 'h4'] }), - FixedToolbarFeature(), - InlineToolbarFeature(), - ] - }, - }), - label: 'Intro Content', - }, - { - name: 'populateBy', - type: 'select', - defaultValue: 'collection', - options: [ - { - label: 'Collection', - value: 'collection', - }, - { - label: 'Individual Selection', - value: 'selection', - }, - ], - }, - { - name: 'relationTo', - type: 'select', - admin: { - condition: (_, siblingData) => siblingData.populateBy === 'collection', - }, - defaultValue: 'posts', - label: 'Collections To Show', - options: [ - { - label: 'Posts', - value: 'posts', - }, - ], - }, - { - name: 'categories', - type: 'relationship', - admin: { - condition: (_, siblingData) => siblingData.populateBy === 'collection', - }, - hasMany: true, - label: 'Categories To Show', - relationTo: 'categories', - }, - { - name: 'limit', - type: 'number', - admin: { - condition: (_, siblingData) => siblingData.populateBy === 'collection', - step: 1, - }, - defaultValue: 10, - label: 'Limit', - }, - { - name: 'selectedDocs', - type: 'relationship', - admin: { - condition: (_, siblingData) => siblingData.populateBy === 'selection', - }, - hasMany: true, - label: 'Selection', - relationTo: ['posts'], - }, - ], - labels: { - plural: 'Archives', - singular: 'Archive', - }, -} diff --git a/src/blocks/Form/Checkbox/index.tsx b/src/blocks/Form/Checkbox/index.tsx deleted file mode 100644 index 633d5db..0000000 --- a/src/blocks/Form/Checkbox/index.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { CheckboxField } from '@payloadcms/plugin-form-builder/types' -import type { FieldErrorsImpl, FieldValues, UseFormRegister } from 'react-hook-form' - -import { useFormContext } from 'react-hook-form' - -import { Checkbox as CheckboxUi } from '@/components/ui/checkbox' -import { Label } from '@/components/ui/label' -import React from 'react' - -import { Error } from '../Error' -import { Width } from '../Width' - -export const Checkbox: React.FC< - CheckboxField & { - errors: Partial - register: UseFormRegister - } -> = ({ name, defaultValue, errors, label, register, required, width }) => { - const props = register(name, { required: required }) - const { setValue } = useFormContext() - - return ( - -
- { - setValue(props.name, checked) - }} - /> - -
- {errors[name] && } -
- ) -} diff --git a/src/blocks/Form/Component.tsx b/src/blocks/Form/Component.tsx deleted file mode 100644 index c7f0a85..0000000 --- a/src/blocks/Form/Component.tsx +++ /dev/null @@ -1,164 +0,0 @@ -'use client' -import type { FormFieldBlock, Form as FormType } from '@payloadcms/plugin-form-builder/types' - -import { useRouter } from 'next/navigation' -import React, { useCallback, useState } from 'react' -import { useForm, FormProvider } from 'react-hook-form' -import RichText from '@/components/RichText' -import { Button } from '@/components/ui/button' -import type { DefaultTypedEditorState } from '@payloadcms/richtext-lexical' - -import { fields } from './fields' -import { getClientSideURL } from '@/utilities/getURL' - -export type FormBlockType = { - blockName?: string - blockType?: 'formBlock' - enableIntro: boolean - form: FormType - introContent?: DefaultTypedEditorState -} - -export const FormBlock: React.FC< - { - id?: string - } & FormBlockType -> = (props) => { - const { - enableIntro, - form: formFromProps, - form: { id: formID, confirmationMessage, confirmationType, redirect, submitButtonLabel } = {}, - introContent, - } = props - - const formMethods = useForm({ - defaultValues: formFromProps.fields, - }) - const { - control, - formState: { errors }, - handleSubmit, - register, - } = formMethods - - const [isLoading, setIsLoading] = useState(false) - const [hasSubmitted, setHasSubmitted] = useState() - const [error, setError] = useState<{ message: string; status?: string } | undefined>() - const router = useRouter() - - const onSubmit = useCallback( - (data: FormFieldBlock[]) => { - let loadingTimerID: ReturnType - const submitForm = async () => { - setError(undefined) - - const dataToSend = Object.entries(data).map(([name, value]) => ({ - field: name, - value, - })) - - // delay loading indicator by 1s - loadingTimerID = setTimeout(() => { - setIsLoading(true) - }, 1000) - - try { - const req = await fetch(`${getClientSideURL()}/api/form-submissions`, { - body: JSON.stringify({ - form: formID, - submissionData: dataToSend, - }), - headers: { - 'Content-Type': 'application/json', - }, - method: 'POST', - }) - - const res = await req.json() - - clearTimeout(loadingTimerID) - - if (req.status >= 400) { - setIsLoading(false) - - setError({ - message: res.errors?.[0]?.message || 'Internal Server Error', - status: res.status, - }) - - return - } - - setIsLoading(false) - setHasSubmitted(true) - - if (confirmationType === 'redirect' && redirect) { - const { url } = redirect - - const redirectUrl = url - - if (redirectUrl) router.push(redirectUrl) - } - } catch (err) { - console.warn(err) - setIsLoading(false) - setError({ - message: 'Something went wrong.', - }) - } - } - - void submitForm() - }, - [router, formID, redirect, confirmationType], - ) - - return ( -
- {enableIntro && introContent && !hasSubmitted && ( - - )} -
- - {!isLoading && hasSubmitted && confirmationType === 'message' && ( - - )} - {isLoading && !hasSubmitted &&

Loading, please wait...

} - {error &&
{`${error.status || '500'}: ${error.message || ''}`}
} - {!hasSubmitted && ( -
-
- {formFromProps && - formFromProps.fields && - formFromProps.fields?.map((field, index) => { - const Field = fields?.[ - field.blockType as keyof typeof fields - ] as React.ComponentType> | undefined - if (Field) { - return ( -
- -
- ) - } - return null - })} -
- - -
- )} -
-
-
- ) -} diff --git a/src/blocks/Form/Country/index.tsx b/src/blocks/Form/Country/index.tsx deleted file mode 100644 index 9c85b75..0000000 --- a/src/blocks/Form/Country/index.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import type { CountryField } from '@payloadcms/plugin-form-builder/types' -import type { Control, FieldErrorsImpl } from 'react-hook-form' - -import { Label } from '@/components/ui/label' -import { - Select, - SelectContent, - SelectItem, - SelectTrigger, - SelectValue, -} from '@/components/ui/select' -import React from 'react' -import { Controller } from 'react-hook-form' - -import { Error } from '../Error' -import { Width } from '../Width' -import { countryOptions } from './options' - -export const Country: React.FC< - CountryField & { - control: Control - errors: Partial - } -> = ({ name, control, errors, label, required, width }) => { - return ( - - - { - const controlledValue = countryOptions.find((t) => t.value === value) - - return ( - - ) - }} - rules={{ required }} - /> - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/Country/options.ts b/src/blocks/Form/Country/options.ts deleted file mode 100644 index f952c1d..0000000 --- a/src/blocks/Form/Country/options.ts +++ /dev/null @@ -1,982 +0,0 @@ -export const countryOptions = [ - { - label: 'Afghanistan', - value: 'AF', - }, - { - label: 'Åland Islands', - value: 'AX', - }, - { - label: 'Albania', - value: 'AL', - }, - { - label: 'Algeria', - value: 'DZ', - }, - { - label: 'American Samoa', - value: 'AS', - }, - { - label: 'Andorra', - value: 'AD', - }, - { - label: 'Angola', - value: 'AO', - }, - { - label: 'Anguilla', - value: 'AI', - }, - { - label: 'Antarctica', - value: 'AQ', - }, - { - label: 'Antigua and Barbuda', - value: 'AG', - }, - { - label: 'Argentina', - value: 'AR', - }, - { - label: 'Armenia', - value: 'AM', - }, - { - label: 'Aruba', - value: 'AW', - }, - { - label: 'Australia', - value: 'AU', - }, - { - label: 'Austria', - value: 'AT', - }, - { - label: 'Azerbaijan', - value: 'AZ', - }, - { - label: 'Bahamas', - value: 'BS', - }, - { - label: 'Bahrain', - value: 'BH', - }, - { - label: 'Bangladesh', - value: 'BD', - }, - { - label: 'Barbados', - value: 'BB', - }, - { - label: 'Belarus', - value: 'BY', - }, - { - label: 'Belgium', - value: 'BE', - }, - { - label: 'Belize', - value: 'BZ', - }, - { - label: 'Benin', - value: 'BJ', - }, - { - label: 'Bermuda', - value: 'BM', - }, - { - label: 'Bhutan', - value: 'BT', - }, - { - label: 'Bolivia', - value: 'BO', - }, - { - label: 'Bosnia and Herzegovina', - value: 'BA', - }, - { - label: 'Botswana', - value: 'BW', - }, - { - label: 'Bouvet Island', - value: 'BV', - }, - { - label: 'Brazil', - value: 'BR', - }, - { - label: 'British Indian Ocean Territory', - value: 'IO', - }, - { - label: 'Brunei Darussalam', - value: 'BN', - }, - { - label: 'Bulgaria', - value: 'BG', - }, - { - label: 'Burkina Faso', - value: 'BF', - }, - { - label: 'Burundi', - value: 'BI', - }, - { - label: 'Cambodia', - value: 'KH', - }, - { - label: 'Cameroon', - value: 'CM', - }, - { - label: 'Canada', - value: 'CA', - }, - { - label: 'Cape Verde', - value: 'CV', - }, - { - label: 'Cayman Islands', - value: 'KY', - }, - { - label: 'Central African Republic', - value: 'CF', - }, - { - label: 'Chad', - value: 'TD', - }, - { - label: 'Chile', - value: 'CL', - }, - { - label: 'China', - value: 'CN', - }, - { - label: 'Christmas Island', - value: 'CX', - }, - { - label: 'Cocos (Keeling) Islands', - value: 'CC', - }, - { - label: 'Colombia', - value: 'CO', - }, - { - label: 'Comoros', - value: 'KM', - }, - { - label: 'Congo', - value: 'CG', - }, - { - label: 'Congo, The Democratic Republic of the', - value: 'CD', - }, - { - label: 'Cook Islands', - value: 'CK', - }, - { - label: 'Costa Rica', - value: 'CR', - }, - { - label: "Cote D'Ivoire", - value: 'CI', - }, - { - label: 'Croatia', - value: 'HR', - }, - { - label: 'Cuba', - value: 'CU', - }, - { - label: 'Cyprus', - value: 'CY', - }, - { - label: 'Czech Republic', - value: 'CZ', - }, - { - label: 'Denmark', - value: 'DK', - }, - { - label: 'Djibouti', - value: 'DJ', - }, - { - label: 'Dominica', - value: 'DM', - }, - { - label: 'Dominican Republic', - value: 'DO', - }, - { - label: 'Ecuador', - value: 'EC', - }, - { - label: 'Egypt', - value: 'EG', - }, - { - label: 'El Salvador', - value: 'SV', - }, - { - label: 'Equatorial Guinea', - value: 'GQ', - }, - { - label: 'Eritrea', - value: 'ER', - }, - { - label: 'Estonia', - value: 'EE', - }, - { - label: 'Ethiopia', - value: 'ET', - }, - { - label: 'Falkland Islands (Malvinas)', - value: 'FK', - }, - { - label: 'Faroe Islands', - value: 'FO', - }, - { - label: 'Fiji', - value: 'FJ', - }, - { - label: 'Finland', - value: 'FI', - }, - { - label: 'France', - value: 'FR', - }, - { - label: 'French Guiana', - value: 'GF', - }, - { - label: 'French Polynesia', - value: 'PF', - }, - { - label: 'French Southern Territories', - value: 'TF', - }, - { - label: 'Gabon', - value: 'GA', - }, - { - label: 'Gambia', - value: 'GM', - }, - { - label: 'Georgia', - value: 'GE', - }, - { - label: 'Germany', - value: 'DE', - }, - { - label: 'Ghana', - value: 'GH', - }, - { - label: 'Gibraltar', - value: 'GI', - }, - { - label: 'Greece', - value: 'GR', - }, - { - label: 'Greenland', - value: 'GL', - }, - { - label: 'Grenada', - value: 'GD', - }, - { - label: 'Guadeloupe', - value: 'GP', - }, - { - label: 'Guam', - value: 'GU', - }, - { - label: 'Guatemala', - value: 'GT', - }, - { - label: 'Guernsey', - value: 'GG', - }, - { - label: 'Guinea', - value: 'GN', - }, - { - label: 'Guinea-Bissau', - value: 'GW', - }, - { - label: 'Guyana', - value: 'GY', - }, - { - label: 'Haiti', - value: 'HT', - }, - { - label: 'Heard Island and Mcdonald Islands', - value: 'HM', - }, - { - label: 'Holy See (Vatican City State)', - value: 'VA', - }, - { - label: 'Honduras', - value: 'HN', - }, - { - label: 'Hong Kong', - value: 'HK', - }, - { - label: 'Hungary', - value: 'HU', - }, - { - label: 'Iceland', - value: 'IS', - }, - { - label: 'India', - value: 'IN', - }, - { - label: 'Indonesia', - value: 'ID', - }, - { - label: 'Iran, Islamic Republic Of', - value: 'IR', - }, - { - label: 'Iraq', - value: 'IQ', - }, - { - label: 'Ireland', - value: 'IE', - }, - { - label: 'Isle of Man', - value: 'IM', - }, - { - label: 'Israel', - value: 'IL', - }, - { - label: 'Italy', - value: 'IT', - }, - { - label: 'Jamaica', - value: 'JM', - }, - { - label: 'Japan', - value: 'JP', - }, - { - label: 'Jersey', - value: 'JE', - }, - { - label: 'Jordan', - value: 'JO', - }, - { - label: 'Kazakhstan', - value: 'KZ', - }, - { - label: 'Kenya', - value: 'KE', - }, - { - label: 'Kiribati', - value: 'KI', - }, - { - label: "Democratic People's Republic of Korea", - value: 'KP', - }, - { - label: 'Korea, Republic of', - value: 'KR', - }, - { - label: 'Kosovo', - value: 'XK', - }, - { - label: 'Kuwait', - value: 'KW', - }, - { - label: 'Kyrgyzstan', - value: 'KG', - }, - { - label: "Lao People's Democratic Republic", - value: 'LA', - }, - { - label: 'Latvia', - value: 'LV', - }, - { - label: 'Lebanon', - value: 'LB', - }, - { - label: 'Lesotho', - value: 'LS', - }, - { - label: 'Liberia', - value: 'LR', - }, - { - label: 'Libyan Arab Jamahiriya', - value: 'LY', - }, - { - label: 'Liechtenstein', - value: 'LI', - }, - { - label: 'Lithuania', - value: 'LT', - }, - { - label: 'Luxembourg', - value: 'LU', - }, - { - label: 'Macao', - value: 'MO', - }, - { - label: 'Macedonia, The Former Yugoslav Republic of', - value: 'MK', - }, - { - label: 'Madagascar', - value: 'MG', - }, - { - label: 'Malawi', - value: 'MW', - }, - { - label: 'Malaysia', - value: 'MY', - }, - { - label: 'Maldives', - value: 'MV', - }, - { - label: 'Mali', - value: 'ML', - }, - { - label: 'Malta', - value: 'MT', - }, - { - label: 'Marshall Islands', - value: 'MH', - }, - { - label: 'Martinique', - value: 'MQ', - }, - { - label: 'Mauritania', - value: 'MR', - }, - { - label: 'Mauritius', - value: 'MU', - }, - { - label: 'Mayotte', - value: 'YT', - }, - { - label: 'Mexico', - value: 'MX', - }, - { - label: 'Micronesia, Federated States of', - value: 'FM', - }, - { - label: 'Moldova, Republic of', - value: 'MD', - }, - { - label: 'Monaco', - value: 'MC', - }, - { - label: 'Mongolia', - value: 'MN', - }, - { - label: 'Montenegro', - value: 'ME', - }, - { - label: 'Montserrat', - value: 'MS', - }, - { - label: 'Morocco', - value: 'MA', - }, - { - label: 'Mozambique', - value: 'MZ', - }, - { - label: 'Myanmar', - value: 'MM', - }, - { - label: 'Namibia', - value: 'NA', - }, - { - label: 'Nauru', - value: 'NR', - }, - { - label: 'Nepal', - value: 'NP', - }, - { - label: 'Netherlands', - value: 'NL', - }, - { - label: 'Netherlands Antilles', - value: 'AN', - }, - { - label: 'New Caledonia', - value: 'NC', - }, - { - label: 'New Zealand', - value: 'NZ', - }, - { - label: 'Nicaragua', - value: 'NI', - }, - { - label: 'Niger', - value: 'NE', - }, - { - label: 'Nigeria', - value: 'NG', - }, - { - label: 'Niue', - value: 'NU', - }, - { - label: 'Norfolk Island', - value: 'NF', - }, - { - label: 'Northern Mariana Islands', - value: 'MP', - }, - { - label: 'Norway', - value: 'NO', - }, - { - label: 'Oman', - value: 'OM', - }, - { - label: 'Pakistan', - value: 'PK', - }, - { - label: 'Palau', - value: 'PW', - }, - { - label: 'Palestinian Territory, Occupied', - value: 'PS', - }, - { - label: 'Panama', - value: 'PA', - }, - { - label: 'Papua New Guinea', - value: 'PG', - }, - { - label: 'Paraguay', - value: 'PY', - }, - { - label: 'Peru', - value: 'PE', - }, - { - label: 'Philippines', - value: 'PH', - }, - { - label: 'Pitcairn', - value: 'PN', - }, - { - label: 'Poland', - value: 'PL', - }, - { - label: 'Portugal', - value: 'PT', - }, - { - label: 'Puerto Rico', - value: 'PR', - }, - { - label: 'Qatar', - value: 'QA', - }, - { - label: 'Reunion', - value: 'RE', - }, - { - label: 'Romania', - value: 'RO', - }, - { - label: 'Russian Federation', - value: 'RU', - }, - { - label: 'Rwanda', - value: 'RW', - }, - { - label: 'Saint Helena', - value: 'SH', - }, - { - label: 'Saint Kitts and Nevis', - value: 'KN', - }, - { - label: 'Saint Lucia', - value: 'LC', - }, - { - label: 'Saint Pierre and Miquelon', - value: 'PM', - }, - { - label: 'Saint Vincent and the Grenadines', - value: 'VC', - }, - { - label: 'Samoa', - value: 'WS', - }, - { - label: 'San Marino', - value: 'SM', - }, - { - label: 'Sao Tome and Principe', - value: 'ST', - }, - { - label: 'Saudi Arabia', - value: 'SA', - }, - { - label: 'Senegal', - value: 'SN', - }, - { - label: 'Serbia', - value: 'RS', - }, - { - label: 'Seychelles', - value: 'SC', - }, - { - label: 'Sierra Leone', - value: 'SL', - }, - { - label: 'Singapore', - value: 'SG', - }, - { - label: 'Slovakia', - value: 'SK', - }, - { - label: 'Slovenia', - value: 'SI', - }, - { - label: 'Solomon Islands', - value: 'SB', - }, - { - label: 'Somalia', - value: 'SO', - }, - { - label: 'South Africa', - value: 'ZA', - }, - { - label: 'South Georgia and the South Sandwich Islands', - value: 'GS', - }, - { - label: 'Spain', - value: 'ES', - }, - { - label: 'Sri Lanka', - value: 'LK', - }, - { - label: 'Sudan', - value: 'SD', - }, - { - label: 'Suriname', - value: 'SR', - }, - { - label: 'Svalbard and Jan Mayen', - value: 'SJ', - }, - { - label: 'Swaziland', - value: 'SZ', - }, - { - label: 'Sweden', - value: 'SE', - }, - { - label: 'Switzerland', - value: 'CH', - }, - { - label: 'Syrian Arab Republic', - value: 'SY', - }, - { - label: 'Taiwan', - value: 'TW', - }, - { - label: 'Tajikistan', - value: 'TJ', - }, - { - label: 'Tanzania, United Republic of', - value: 'TZ', - }, - { - label: 'Thailand', - value: 'TH', - }, - { - label: 'Timor-Leste', - value: 'TL', - }, - { - label: 'Togo', - value: 'TG', - }, - { - label: 'Tokelau', - value: 'TK', - }, - { - label: 'Tonga', - value: 'TO', - }, - { - label: 'Trinidad and Tobago', - value: 'TT', - }, - { - label: 'Tunisia', - value: 'TN', - }, - { - label: 'Turkey', - value: 'TR', - }, - { - label: 'Turkmenistan', - value: 'TM', - }, - { - label: 'Turks and Caicos Islands', - value: 'TC', - }, - { - label: 'Tuvalu', - value: 'TV', - }, - { - label: 'Uganda', - value: 'UG', - }, - { - label: 'Ukraine', - value: 'UA', - }, - { - label: 'United Arab Emirates', - value: 'AE', - }, - { - label: 'United Kingdom', - value: 'GB', - }, - { - label: 'United States', - value: 'US', - }, - { - label: 'United States Minor Outlying Islands', - value: 'UM', - }, - { - label: 'Uruguay', - value: 'UY', - }, - { - label: 'Uzbekistan', - value: 'UZ', - }, - { - label: 'Vanuatu', - value: 'VU', - }, - { - label: 'Venezuela', - value: 'VE', - }, - { - label: 'Viet Nam', - value: 'VN', - }, - { - label: 'Virgin Islands, British', - value: 'VG', - }, - { - label: 'Virgin Islands, U.S.', - value: 'VI', - }, - { - label: 'Wallis and Futuna', - value: 'WF', - }, - { - label: 'Western Sahara', - value: 'EH', - }, - { - label: 'Yemen', - value: 'YE', - }, - { - label: 'Zambia', - value: 'ZM', - }, - { - label: 'Zimbabwe', - value: 'ZW', - }, -] diff --git a/src/blocks/Form/Email/index.tsx b/src/blocks/Form/Email/index.tsx deleted file mode 100644 index fc9fd28..0000000 --- a/src/blocks/Form/Email/index.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { EmailField } from '@payloadcms/plugin-form-builder/types' -import type { FieldErrorsImpl, FieldValues, UseFormRegister } from 'react-hook-form' - -import { Input } from '@/components/ui/input' -import { Label } from '@/components/ui/label' -import React from 'react' - -import { Error } from '../Error' -import { Width } from '../Width' - -export const Email: React.FC< - EmailField & { - errors: Partial - register: UseFormRegister - } -> = ({ name, defaultValue, errors, label, register, required, width }) => { - return ( - - - - - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/Error/index.tsx b/src/blocks/Form/Error/index.tsx deleted file mode 100644 index a7b9e47..0000000 --- a/src/blocks/Form/Error/index.tsx +++ /dev/null @@ -1,15 +0,0 @@ -'use client' - -import * as React from 'react' -import { useFormContext } from 'react-hook-form' - -export const Error = ({ name }: { name: string }) => { - const { - formState: { errors }, - } = useFormContext() - return ( -
- {(errors[name]?.message as string) || 'This field is required'} -
- ) -} diff --git a/src/blocks/Form/Message/index.tsx b/src/blocks/Form/Message/index.tsx deleted file mode 100644 index 85f5f75..0000000 --- a/src/blocks/Form/Message/index.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import RichText from '@/components/RichText' -import React from 'react' - -import { Width } from '../Width' -import { DefaultTypedEditorState } from '@payloadcms/richtext-lexical' - -export const Message: React.FC<{ message: DefaultTypedEditorState }> = ({ message }) => { - return ( - - {message && } - - ) -} diff --git a/src/blocks/Form/Number/index.tsx b/src/blocks/Form/Number/index.tsx deleted file mode 100644 index f26e54a..0000000 --- a/src/blocks/Form/Number/index.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import type { TextField } from '@payloadcms/plugin-form-builder/types' -import type { FieldErrorsImpl, FieldValues, UseFormRegister } from 'react-hook-form' - -import { Input } from '@/components/ui/input' -import { Label } from '@/components/ui/label' -import React from 'react' - -import { Error } from '../Error' -import { Width } from '../Width' -export const Number: React.FC< - TextField & { - errors: Partial - register: UseFormRegister - } -> = ({ name, defaultValue, errors, label, register, required, width }) => { - return ( - - - - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/Select/index.tsx b/src/blocks/Form/Select/index.tsx deleted file mode 100644 index 30c0e83..0000000 --- a/src/blocks/Form/Select/index.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import type { SelectField } from '@payloadcms/plugin-form-builder/types' -import type { Control, FieldErrorsImpl } from 'react-hook-form' - -import { Label } from '@/components/ui/label' -import { - Select as SelectComponent, - SelectContent, - SelectItem, - SelectTrigger, - SelectValue, -} from '@/components/ui/select' -import React from 'react' -import { Controller } from 'react-hook-form' - -import { Error } from '../Error' -import { Width } from '../Width' - -export const Select: React.FC< - SelectField & { - control: Control - errors: Partial - } -> = ({ name, control, errors, label, options, required, width, defaultValue }) => { - return ( - - - { - const controlledValue = options.find((t) => t.value === value) - - return ( - onChange(val)} value={controlledValue?.value}> - - - - - {options.map(({ label, value }) => { - return ( - - {label} - - ) - })} - - - ) - }} - rules={{ required }} - /> - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/State/index.tsx b/src/blocks/Form/State/index.tsx deleted file mode 100644 index 29e49ca..0000000 --- a/src/blocks/Form/State/index.tsx +++ /dev/null @@ -1,64 +0,0 @@ -import type { StateField } from '@payloadcms/plugin-form-builder/types' -import type { Control, FieldErrorsImpl } from 'react-hook-form' - -import { Label } from '@/components/ui/label' -import { - Select, - SelectContent, - SelectItem, - SelectTrigger, - SelectValue, -} from '@/components/ui/select' -import React from 'react' -import { Controller } from 'react-hook-form' - -import { Error } from '../Error' -import { Width } from '../Width' -import { stateOptions } from './options' - -export const State: React.FC< - StateField & { - control: Control - errors: Partial - } -> = ({ name, control, errors, label, required, width }) => { - return ( - - - { - const controlledValue = stateOptions.find((t) => t.value === value) - - return ( - - ) - }} - rules={{ required }} - /> - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/State/options.ts b/src/blocks/Form/State/options.ts deleted file mode 100644 index 8dff991..0000000 --- a/src/blocks/Form/State/options.ts +++ /dev/null @@ -1,52 +0,0 @@ -export const stateOptions = [ - { label: 'Alabama', value: 'AL' }, - { label: 'Alaska', value: 'AK' }, - { label: 'Arizona', value: 'AZ' }, - { label: 'Arkansas', value: 'AR' }, - { label: 'California', value: 'CA' }, - { label: 'Colorado', value: 'CO' }, - { label: 'Connecticut', value: 'CT' }, - { label: 'Delaware', value: 'DE' }, - { label: 'Florida', value: 'FL' }, - { label: 'Georgia', value: 'GA' }, - { label: 'Hawaii', value: 'HI' }, - { label: 'Idaho', value: 'ID' }, - { label: 'Illinois', value: 'IL' }, - { label: 'Indiana', value: 'IN' }, - { label: 'Iowa', value: 'IA' }, - { label: 'Kansas', value: 'KS' }, - { label: 'Kentucky', value: 'KY' }, - { label: 'Louisiana', value: 'LA' }, - { label: 'Maine', value: 'ME' }, - { label: 'Maryland', value: 'MD' }, - { label: 'Massachusetts', value: 'MA' }, - { label: 'Michigan', value: 'MI' }, - { label: 'Minnesota', value: 'MN' }, - { label: 'Mississippi', value: 'MS' }, - { label: 'Missouri', value: 'MO' }, - { label: 'Montana', value: 'MT' }, - { label: 'Nebraska', value: 'NE' }, - { label: 'Nevada', value: 'NV' }, - { label: 'New Hampshire', value: 'NH' }, - { label: 'New Jersey', value: 'NJ' }, - { label: 'New Mexico', value: 'NM' }, - { label: 'New York', value: 'NY' }, - { label: 'North Carolina', value: 'NC' }, - { label: 'North Dakota', value: 'ND' }, - { label: 'Ohio', value: 'OH' }, - { label: 'Oklahoma', value: 'OK' }, - { label: 'Oregon', value: 'OR' }, - { label: 'Pennsylvania', value: 'PA' }, - { label: 'Rhode Island', value: 'RI' }, - { label: 'South Carolina', value: 'SC' }, - { label: 'South Dakota', value: 'SD' }, - { label: 'Tennessee', value: 'TN' }, - { label: 'Texas', value: 'TX' }, - { label: 'Utah', value: 'UT' }, - { label: 'Vermont', value: 'VT' }, - { label: 'Virginia', value: 'VA' }, - { label: 'Washington', value: 'WA' }, - { label: 'West Virginia', value: 'WV' }, - { label: 'Wisconsin', value: 'WI' }, - { label: 'Wyoming', value: 'WY' }, -] diff --git a/src/blocks/Form/Text/index.tsx b/src/blocks/Form/Text/index.tsx deleted file mode 100644 index be1e0ff..0000000 --- a/src/blocks/Form/Text/index.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import type { TextField } from '@payloadcms/plugin-form-builder/types' -import type { FieldErrorsImpl, FieldValues, UseFormRegister } from 'react-hook-form' - -import { Input } from '@/components/ui/input' -import { Label } from '@/components/ui/label' -import React from 'react' - -import { Error } from '../Error' -import { Width } from '../Width' - -export const Text: React.FC< - TextField & { - errors: Partial - register: UseFormRegister - } -> = ({ name, defaultValue, errors, label, register, required, width }) => { - return ( - - - - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/Textarea/index.tsx b/src/blocks/Form/Textarea/index.tsx deleted file mode 100644 index ecb6e21..0000000 --- a/src/blocks/Form/Textarea/index.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import type { TextField } from '@payloadcms/plugin-form-builder/types' -import type { FieldErrorsImpl, FieldValues, UseFormRegister } from 'react-hook-form' - -import { Label } from '@/components/ui/label' -import { Textarea as TextAreaComponent } from '@/components/ui/textarea' -import React from 'react' - -import { Error } from '../Error' -import { Width } from '../Width' - -export const Textarea: React.FC< - TextField & { - errors: Partial - register: UseFormRegister - rows?: number - } -> = ({ name, defaultValue, errors, label, register, required, rows = 3, width }) => { - return ( - - - - - - {errors[name] && } - - ) -} diff --git a/src/blocks/Form/Width/index.tsx b/src/blocks/Form/Width/index.tsx deleted file mode 100644 index bcc51a3..0000000 --- a/src/blocks/Form/Width/index.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import * as React from 'react' - -export const Width: React.FC<{ - children: React.ReactNode - className?: string - width?: number | string -}> = ({ children, className, width }) => { - return ( -
- {children} -
- ) -} diff --git a/src/blocks/Form/config.ts b/src/blocks/Form/config.ts deleted file mode 100644 index 5334289..0000000 --- a/src/blocks/Form/config.ts +++ /dev/null @@ -1,51 +0,0 @@ -import type { Block } from 'payload' - -import { - FixedToolbarFeature, - HeadingFeature, - InlineToolbarFeature, - lexicalEditor, -} from '@payloadcms/richtext-lexical' - -export const FormBlock: Block = { - slug: 'formBlock', - interfaceName: 'FormBlock', - fields: [ - { - name: 'form', - type: 'relationship', - relationTo: 'forms', - required: true, - }, - { - name: 'enableIntro', - type: 'checkbox', - label: 'Enable Intro Content', - }, - { - name: 'introContent', - type: 'richText', - admin: { - condition: (_, { enableIntro }) => Boolean(enableIntro), - }, - editor: lexicalEditor({ - features: ({ rootFeatures }) => { - return [ - ...rootFeatures, - HeadingFeature({ enabledHeadingSizes: ['h1', 'h2', 'h3', 'h4'] }), - FixedToolbarFeature(), - InlineToolbarFeature(), - ] - }, - }), - label: 'Intro Content', - }, - ], - graphQL: { - singularName: 'FormBlock', - }, - labels: { - plural: 'Form Blocks', - singular: 'Form Block', - }, -} diff --git a/src/blocks/Form/fields.tsx b/src/blocks/Form/fields.tsx deleted file mode 100644 index fa660f7..0000000 --- a/src/blocks/Form/fields.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { Checkbox } from './Checkbox' -import { Country } from './Country' -import { Email } from './Email' -import { Message } from './Message' -import { Number } from './Number' -import { Select } from './Select' -import { State } from './State' -import { Text } from './Text' -import { Textarea } from './Textarea' - -export const fields = { - checkbox: Checkbox, - country: Country, - email: Email, - message: Message, - number: Number, - select: Select, - state: State, - text: Text, - textarea: Textarea, -} diff --git a/src/blocks/RelatedPosts/Component.tsx b/src/blocks/RelatedPosts/Component.tsx index 976c0cb..adff9b3 100644 --- a/src/blocks/RelatedPosts/Component.tsx +++ b/src/blocks/RelatedPosts/Component.tsx @@ -24,7 +24,7 @@ export const RelatedPosts: React.FC = (props) => { {docs?.map((doc, index) => { if (typeof doc === 'string') return null - return + return })} diff --git a/src/blocks/RenderBlocks.tsx b/src/blocks/RenderBlocks.tsx index c84634a..bfc3142 100644 --- a/src/blocks/RenderBlocks.tsx +++ b/src/blocks/RenderBlocks.tsx @@ -2,17 +2,13 @@ import React, { Fragment } from 'react' import type { Page } from '@/payload-types' -import { ArchiveBlock } from '@/blocks/ArchiveBlock/Component' import { CallToActionBlock } from '@/blocks/CallToAction/Component' import { ContentBlock } from '@/blocks/Content/Component' -import { FormBlock } from '@/blocks/Form/Component' import { MediaBlock } from '@/blocks/MediaBlock/Component' const blockComponents = { - archive: ArchiveBlock, content: ContentBlock, cta: CallToActionBlock, - formBlock: FormBlock, mediaBlock: MediaBlock, } diff --git a/src/collections/Categories.ts b/src/collections/Categories.ts deleted file mode 100644 index cca3fc1..0000000 --- a/src/collections/Categories.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { CollectionConfig } from 'payload' - -import { anyone } from '../access/anyone' -import { authenticated } from '../access/authenticated' -import { slugField } from 'payload' - -export const Categories: CollectionConfig = { - slug: 'categories', - access: { - create: authenticated, - delete: authenticated, - read: anyone, - update: authenticated, - }, - admin: { - useAsTitle: 'title', - }, - fields: [ - { - name: 'title', - type: 'text', - required: true, - }, - slugField({ - position: undefined, - }), - ], -} diff --git a/src/collections/Events.ts b/src/collections/Events.ts index b4b4a29..285b28f 100644 --- a/src/collections/Events.ts +++ b/src/collections/Events.ts @@ -17,8 +17,8 @@ import { export const Events: CollectionConfig = { slug: 'events', labels: { - singular: 'Event', - plural: 'Events', + singular: 'Termin / Event', + plural: 'Termine & Events', }, access: { create: authenticated, @@ -28,6 +28,7 @@ export const Events: CollectionConfig = { }, admin: { defaultColumns: ['title', 'spaPath', 'slug', 'updatedAt'], + group: 'Inhalte', livePreview: { url: ({ data, req }) => generatePreviewPath({ diff --git a/src/collections/Media.ts b/src/collections/Media.ts index ae94c0c..9525751 100644 --- a/src/collections/Media.ts +++ b/src/collections/Media.ts @@ -16,6 +16,10 @@ const dirname = path.dirname(filename) export const Media: CollectionConfig = { slug: 'media', + labels: { + singular: 'Medium', + plural: 'Medien', + }, folders: true, access: { create: authenticated, @@ -39,6 +43,9 @@ export const Media: CollectionConfig = { }), }, ], + admin: { + group: 'Medien', + }, upload: { // Upload to the public/media directory in Next.js making them publicly accessible even outside of Payload staticDir: path.resolve(dirname, '../../public/media'), diff --git a/src/collections/Pages/homeFields.ts b/src/collections/Pages/homeFields.ts index 4f0ec59..c0f38ff 100644 --- a/src/collections/Pages/homeFields.ts +++ b/src/collections/Pages/homeFields.ts @@ -92,9 +92,13 @@ export const homeFields: Field[] = [ text('partnersLabel', 'Partner ticker label', homeContent.hero.partnersLabel), { name: 'partners', - label: 'Partner ticker names', + label: 'Fallback partner ticker names', type: 'array', defaultValue: homeContent.hero.partners, + admin: { + description: + 'Used only if partner collection records are unavailable. The frontend prefers the real logo uploads from the Partners collection.', + }, fields: [text('name', 'Name')], }, ], diff --git a/src/collections/Pages/index.ts b/src/collections/Pages/index.ts index 4dcb04c..7504b2c 100644 --- a/src/collections/Pages/index.ts +++ b/src/collections/Pages/index.ts @@ -2,10 +2,8 @@ import type { CollectionConfig } from 'payload' import { authenticated } from '../../access/authenticated' import { authenticatedOrPublished } from '../../access/authenticatedOrPublished' -import { Archive } from '../../blocks/ArchiveBlock/config' import { CallToAction } from '../../blocks/CallToAction/config' import { Content } from '../../blocks/Content/config' -import { FormBlock } from '../../blocks/Form/config' import { MediaBlock } from '../../blocks/MediaBlock/config' import { hero } from '@/heros/config' import { aboutFields } from './aboutFields' @@ -135,6 +133,10 @@ const isManagedSpaPage = (_: unknown, siblingData?: { slug?: string; spaPath?: s export const Pages: CollectionConfig<'pages'> = { slug: 'pages', + labels: { + singular: 'Seite', + plural: 'Seiten', + }, access: { create: authenticated, delete: authenticated, @@ -150,6 +152,7 @@ export const Pages: CollectionConfig<'pages'> = { }, admin: { defaultColumns: ['title', 'spaPath', 'slug', 'updatedAt'], + group: 'Inhalte', livePreview: { url: ({ data, req }) => generatePreviewPath({ @@ -190,7 +193,7 @@ export const Pages: CollectionConfig<'pages'> = { { name: 'layout', type: 'blocks', - blocks: [CallToAction, Content, MediaBlock, Archive, FormBlock], + blocks: [CallToAction, Content, MediaBlock], required: true, admin: { initCollapsed: true, diff --git a/src/collections/Pages/netzwerkFields.ts b/src/collections/Pages/netzwerkFields.ts index acc53d8..3b79272 100644 --- a/src/collections/Pages/netzwerkFields.ts +++ b/src/collections/Pages/netzwerkFields.ts @@ -58,46 +58,9 @@ const juryMemberFields: Field[] = [ const rowFields: Field[] = [text('num', 'Number'), text('label', 'Label'), textarea('body', 'Body')] -const partnerFields: Field[] = [ - text('stableId', 'Stable ID'), - text('name', 'Name'), - text('role', 'Role'), - numberField('tier', 'Tier'), - textarea('desc', 'Short description'), - textarea('fullDesc', 'Full modal description'), - { - name: 'logoKind', - label: 'Logo style', - type: 'select', - defaultValue: 'text', - options: [ - { label: 'Text', value: 'text' }, - { label: 'Serif text', value: 'serif' }, - { label: 'Badge', value: 'badge' }, - { label: 'Monogram', value: 'monogram' }, - { label: 'Dot mark', value: 'dot' }, - { label: 'Leaf mark', value: 'leaf' }, - { label: 'RSM blocks', value: 'rsm' }, - { label: 'Deutsche Bank mark', value: 'deutschebank' }, - ], - }, - text('logoText', 'Logo text'), - text('logoSubtext', 'Logo subtext'), - text('logoColor', 'Logo color'), - text('industry', 'Industry'), - text('location', 'Location'), - text('website', 'Website'), - text('linkedin', 'LinkedIn URL'), - text('heroImg', 'Modal hero image URL'), -] - const benefitFields: Field[] = [text('num', 'Number'), text('label', 'Label'), text('sub', 'Subline')] const packageFields: Field[] = [text('value', 'Value'), text('title', 'Title'), textarea('desc', 'Description')] const formStepFields: Field[] = [text('label', 'Label')] -const partnerDefaults = netzwerkContent.partners.items.map(({ id, ...partner }) => ({ - ...partner, - stableId: id, -})) export const netzwerkFields: Field[] = [ { @@ -220,7 +183,7 @@ export const netzwerkFields: Field[] = [ name: 'partners', label: '06 · Partners', type: 'group', - admin: sectionAdmin('Partner section, tier labels, partner records, and modal labels.'), + admin: sectionAdmin('Partner section copy, tier labels, and modal labels. Partner records are managed in the Partners collection.'), fields: [ text('eyebrow', 'Eyebrow', netzwerkContent.partners.eyebrow), textarea('heading', 'Heading', netzwerkContent.partners.heading), @@ -251,14 +214,6 @@ export const netzwerkFields: Field[] = [ text('footerRolePrefix', 'Footer role prefix', netzwerkContent.partners.modal.footerRolePrefix), ], }, - { - name: 'items', - label: 'Partners', - type: 'array', - dbName: 'network_partners', - defaultValue: partnerDefaults, - fields: partnerFields, - }, ], }, { diff --git a/src/collections/Partners.ts b/src/collections/Partners.ts new file mode 100644 index 0000000..ef60227 --- /dev/null +++ b/src/collections/Partners.ts @@ -0,0 +1,175 @@ +import type { CollectionConfig } from 'payload' + +import { authenticated } from '@/access/authenticated' +import { authenticatedOrPublished } from '@/access/authenticatedOrPublished' +import { populatePublishedAt } from '@/hooks/populatePublishedAt' + +const logoKindOptions = [ + { label: 'Text', value: 'text' }, + { label: 'Serif text', value: 'serif' }, + { label: 'Badge', value: 'badge' }, + { label: 'Monogram', value: 'monogram' }, + { label: 'Dot mark', value: 'dot' }, + { label: 'Leaf mark', value: 'leaf' }, + { label: 'RSM blocks', value: 'rsm' }, + { label: 'Deutsche Bank mark', value: 'deutschebank' }, +] + +export const Partners: CollectionConfig = { + slug: 'partners', + labels: { + singular: 'Partner', + plural: 'Partner', + }, + access: { + create: authenticated, + delete: authenticated, + read: authenticatedOrPublished, + update: authenticated, + }, + admin: { + defaultColumns: ['name', 'role', 'tier', 'sortOrder', 'active', 'showOnHomepage', 'updatedAt'], + group: 'Inhalte', + useAsTitle: 'name', + }, + fields: [ + { + name: 'name', + type: 'text', + required: true, + }, + { + name: 'stableId', + type: 'text', + unique: true, + index: true, + admin: { + description: 'Stable machine-readable key used when migrating or matching partner records.', + }, + }, + { + name: 'role', + type: 'select', + required: true, + options: [ + { label: 'Hauptsponsor', value: 'Hauptsponsor' }, + { label: 'Sponsor', value: 'Sponsor' }, + { label: 'Finanzpartner', value: 'Finanzpartner' }, + { label: 'Partner', value: 'Partner' }, + { label: 'Medienpartner', value: 'Medienpartner' }, + ], + }, + { + name: 'tier', + type: 'number', + defaultValue: 3, + required: true, + }, + { + name: 'sortOrder', + type: 'number', + defaultValue: 100, + admin: { + description: 'Lower numbers appear earlier on partner surfaces.', + }, + }, + { + name: 'active', + type: 'checkbox', + defaultValue: true, + label: 'Active', + }, + { + name: 'showOnHomepage', + type: 'checkbox', + defaultValue: true, + label: 'Show on homepage ticker', + }, + { + name: 'logo', + type: 'upload', + relationTo: 'media', + admin: { + description: 'Preferred real partner logo. Styled logo fallback fields below are used when this is empty.', + }, + }, + { + name: 'logoAlt', + type: 'text', + label: 'Logo alt text', + }, + { + name: 'logoKind', + type: 'select', + defaultValue: 'text', + label: 'Fallback logo style', + options: logoKindOptions, + }, + { + name: 'logoText', + type: 'text', + label: 'Fallback logo text', + }, + { + name: 'logoSubtext', + type: 'text', + label: 'Fallback logo subtext', + }, + { + name: 'logoColor', + type: 'text', + label: 'Fallback logo color', + }, + { + name: 'desc', + type: 'textarea', + label: 'Short description', + }, + { + name: 'fullDesc', + type: 'textarea', + label: 'Full modal description', + }, + { + name: 'industry', + type: 'text', + }, + { + name: 'location', + type: 'text', + }, + { + name: 'website', + type: 'text', + }, + { + name: 'linkedin', + type: 'text', + label: 'LinkedIn URL', + }, + { + name: 'heroImg', + type: 'text', + label: 'Modal hero image URL', + }, + { + name: 'publishedAt', + type: 'date', + admin: { + position: 'sidebar', + }, + }, + ], + hooks: { + beforeChange: [populatePublishedAt], + }, + versions: { + drafts: { + autosave: { + interval: 100, + }, + schedulePublish: true, + }, + maxPerDoc: 50, + }, +} diff --git a/src/collections/Posts/index.ts b/src/collections/Posts/index.ts index 43dc170..c15c387 100644 --- a/src/collections/Posts/index.ts +++ b/src/collections/Posts/index.ts @@ -31,8 +31,8 @@ import { slugField } from 'payload' export const Posts: CollectionConfig<'posts'> = { slug: 'posts', labels: { - singular: 'Presse', - plural: 'Presse', + singular: 'Presseartikel', + plural: 'Presseartikel', }, access: { create: authenticated, @@ -46,7 +46,6 @@ export const Posts: CollectionConfig<'posts'> = { defaultPopulate: { title: true, slug: true, - categories: true, meta: { image: true, description: true, @@ -54,6 +53,7 @@ export const Posts: CollectionConfig<'posts'> = { }, admin: { defaultColumns: ['title', 'spaPath', 'slug', 'updatedAt'], + group: 'Inhalte', livePreview: { url: ({ data, req }) => generatePreviewPath({ @@ -254,17 +254,8 @@ export const Posts: CollectionConfig<'posts'> = { hasMany: true, relationTo: 'posts', }, - { - name: 'categories', - type: 'relationship', - admin: { - position: 'sidebar', - }, - hasMany: true, - relationTo: 'categories', - }, ], - label: 'Meta', + label: 'Verknüpfungen', }, { name: 'meta', diff --git a/src/collections/Preistraeger.ts b/src/collections/Preistraeger.ts index 0ab25bf..a6e67d9 100644 --- a/src/collections/Preistraeger.ts +++ b/src/collections/Preistraeger.ts @@ -28,6 +28,7 @@ export const Preistraeger: CollectionConfig = { }, admin: { defaultColumns: ['title', 'spaPath', 'slug', 'updatedAt'], + group: 'Inhalte', livePreview: { url: ({ data, req }) => generatePreviewPath({ diff --git a/src/collections/Users/index.ts b/src/collections/Users/index.ts index f0555a7..9abdd61 100644 --- a/src/collections/Users/index.ts +++ b/src/collections/Users/index.ts @@ -4,6 +4,10 @@ import { authenticated } from '../../access/authenticated' export const Users: CollectionConfig = { slug: 'users', + labels: { + singular: 'Benutzer', + plural: 'Benutzer', + }, access: { admin: authenticated, create: authenticated, @@ -13,6 +17,7 @@ export const Users: CollectionConfig = { }, admin: { defaultColumns: ['name', 'email'], + group: 'Administration', useAsTitle: 'name', }, auth: true, diff --git a/src/components/Card/index.tsx b/src/components/Card/index.tsx index 1ecdbfd..0c14df4 100644 --- a/src/components/Card/index.tsx +++ b/src/components/Card/index.tsx @@ -2,32 +2,30 @@ import { cn } from '@/utilities/ui' import useClickableCard from '@/utilities/useClickableCard' import Link from 'next/link' -import React, { Fragment } from 'react' +import React from 'react' import type { Post } from '@/payload-types' import { Media } from '@/components/Media' -export type CardPostData = Pick +export type CardPostData = Pick export const Card: React.FC<{ alignItems?: 'center' className?: string doc?: CardPostData relationTo?: 'posts' - showCategories?: boolean title?: string }> = (props) => { const { card: { ref: cardRef }, link: { ref: linkRef }, } = useClickableCard({}) - const { className, doc, relationTo, showCategories, title: titleFromProps } = props + const { className, doc, relationTo, title: titleFromProps } = props - const { slug, categories, meta, title } = doc || {} + const { slug, meta, title } = doc || {} const { description, image: metaImage } = meta || {} - const hasCategories = categories && Array.isArray(categories) && categories.length > 0 const titleToUse = titleFromProps || title const sanitizedDescription = description?.replace(/\s/g, ' ') // replace non-breaking space with white space const href = `/${relationTo}/${slug}` @@ -45,28 +43,6 @@ export const Card: React.FC<{ {metaImage && typeof metaImage !== 'string' && }
- {showCategories && hasCategories && ( -
- {categories?.map((category, index) => { - if (typeof category === 'object') { - const { title: titleFromCategory } = category - - const categoryTitle = titleFromCategory || 'Untitled category' - - const isLast = index === categories.length - 1 - - return ( - - {categoryTitle} - {!isLast && ,  } - - ) - } - - return null - })} -
- )} {titleToUse && (

diff --git a/src/components/CollectionArchive/index.tsx b/src/components/CollectionArchive/index.tsx index b0a2a1c..c141659 100644 --- a/src/components/CollectionArchive/index.tsx +++ b/src/components/CollectionArchive/index.tsx @@ -18,7 +18,7 @@ export const CollectionArchive: React.FC = (props) => { if (typeof result === 'object' && result !== null) { return (
- +
) } diff --git a/src/components/PayloadRedirects/index.tsx b/src/components/PayloadRedirects/index.tsx deleted file mode 100644 index d239771..0000000 --- a/src/components/PayloadRedirects/index.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import type React from 'react' -import type { Page, Post } from '@/payload-types' - -import { getCachedDocument } from '@/utilities/getDocument' -import { getCachedRedirects } from '@/utilities/getRedirects' -import { notFound, redirect } from 'next/navigation' - -interface Props { - disableNotFound?: boolean - url: string -} - -/* This component helps us with SSR based dynamic redirects */ -export const PayloadRedirects: React.FC = async ({ disableNotFound, url }) => { - const redirects = await getCachedRedirects()() - - const redirectItem = redirects.find((redirect) => redirect.from === url) - - if (redirectItem) { - if (redirectItem.to?.url) { - redirect(redirectItem.to.url) - } - - let redirectUrl: string - - if (typeof redirectItem.to?.reference?.value === 'string') { - const collection = redirectItem.to?.reference?.relationTo - const id = redirectItem.to?.reference?.value - - const document = (await getCachedDocument(collection, id)()) as Page | Post - redirectUrl = `${redirectItem.to?.reference?.relationTo !== 'pages' ? `/${redirectItem.to?.reference?.relationTo}` : ''}/${ - document?.slug - }` - } else { - redirectUrl = `${redirectItem.to?.reference?.relationTo !== 'pages' ? `/${redirectItem.to?.reference?.relationTo}` : ''}/${ - typeof redirectItem.to?.reference?.value === 'object' - ? redirectItem.to?.reference?.value?.slug - : '' - }` - } - - if (redirectUrl) redirect(redirectUrl) - } - - if (disableNotFound) return null - - notFound() -} diff --git a/src/endpoints/seed/contact-form.ts b/src/endpoints/seed/contact-form.ts deleted file mode 100644 index 2993802..0000000 --- a/src/endpoints/seed/contact-form.ts +++ /dev/null @@ -1,111 +0,0 @@ -import { RequiredDataFromCollectionSlug } from 'payload' - -export const contactForm: RequiredDataFromCollectionSlug<'forms'> = { - confirmationMessage: { - root: { - type: 'root', - children: [ - { - type: 'heading', - children: [ - { - type: 'text', - detail: 0, - format: 0, - mode: 'normal', - style: '', - text: 'The contact form has been submitted successfully.', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - tag: 'h2', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - version: 1, - }, - }, - confirmationType: 'message', - createdAt: '2023-01-12T21:47:41.374Z', - emails: [ - { - emailFrom: '"Payload" \u003Cdemo@payloadcms.com\u003E', - emailTo: '{{email}}', - message: { - root: { - type: 'root', - children: [ - { - type: 'paragraph', - children: [ - { - type: 'text', - detail: 0, - format: 0, - mode: 'normal', - style: '', - text: 'Your contact form submission was successfully received.', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - textFormat: 0, - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - version: 1, - }, - }, - subject: "You've received a new message.", - }, - ], - fields: [ - { - name: 'full-name', - blockName: 'full-name', - blockType: 'text', - label: 'Full Name', - required: true, - width: 100, - }, - { - name: 'email', - blockName: 'email', - blockType: 'email', - label: 'Email', - required: true, - width: 100, - }, - { - name: 'phone', - blockName: 'phone', - blockType: 'number', - label: 'Phone', - required: false, - width: 100, - }, - { - name: 'message', - blockName: 'message', - blockType: 'textarea', - label: 'Message', - required: true, - width: 100, - }, - ], - redirect: undefined, - submitButtonLabel: 'Submit', - title: 'Contact Form', - updatedAt: '2023-01-12T21:47:41.374Z', -} diff --git a/src/endpoints/seed/contact-page.ts b/src/endpoints/seed/contact-page.ts deleted file mode 100644 index 787d267..0000000 --- a/src/endpoints/seed/contact-page.ts +++ /dev/null @@ -1,56 +0,0 @@ -import type { Form } from '@/payload-types' -import { RequiredDataFromCollectionSlug } from 'payload' - -type ContactArgs = { - contactForm: Form -} - -export const contact: (args: ContactArgs) => RequiredDataFromCollectionSlug<'pages'> = ({ - contactForm, -}) => { - return { - slug: 'contact', - _status: 'published', - hero: { - type: 'none', - }, - layout: [ - { - blockType: 'formBlock', - enableIntro: true, - form: contactForm, - introContent: { - root: { - type: 'root', - children: [ - { - type: 'heading', - children: [ - { - type: 'text', - detail: 0, - format: 0, - mode: 'normal', - style: '', - text: 'Example contact form:', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - tag: 'h3', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - version: 1, - }, - }, - }, - ], - title: 'Contact', - } -} diff --git a/src/endpoints/seed/home-static.ts b/src/endpoints/seed/home-static.ts index 27eb345..f370e56 100644 --- a/src/endpoints/seed/home-static.ts +++ b/src/endpoints/seed/home-static.ts @@ -19,7 +19,7 @@ export const homeStatic: RequiredDataFromCollectionSlug<'pages'> = { format: 0, mode: 'normal', style: '', - text: 'Payload Website Template', + text: 'Bayerischer Mittelstandspreis', version: 1, }, ], @@ -80,8 +80,8 @@ export const homeStatic: RequiredDataFromCollectionSlug<'pages'> = { }, }, meta: { - description: 'An open-source website built with Payload and Next.js.', - title: 'Payload Website Template', + description: 'Der Preis für herausragenden Mittelstand in Bayern.', + title: 'Bayerischer Mittelstandspreis', }, title: 'Home', layout: [], diff --git a/src/endpoints/seed/home.ts b/src/endpoints/seed/home.ts index cbc8eeb..9dc8b9c 100644 --- a/src/endpoints/seed/home.ts +++ b/src/endpoints/seed/home.ts @@ -47,7 +47,7 @@ export const home: (args: HomeArgs) => RequiredDataFromCollectionSlug<'pages'> = format: 0, mode: 'normal', style: '', - text: 'Payload Website Template', + text: 'Bayerischer Mittelstandspreis', version: 1, }, ], @@ -513,62 +513,6 @@ export const home: (args: HomeArgs) => RequiredDataFromCollectionSlug<'pages'> = blockType: 'mediaBlock', media: metaImage.id, }, - { - blockName: 'Archive Block', - blockType: 'archive', - categories: [], - introContent: { - root: { - type: 'root', - children: [ - { - type: 'heading', - children: [ - { - type: 'text', - detail: 0, - format: 0, - mode: 'normal', - style: '', - text: 'Recent posts', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - tag: 'h3', - version: 1, - }, - { - type: 'paragraph', - children: [ - { - type: 'text', - detail: 0, - format: 0, - mode: 'normal', - style: '', - text: 'The posts below are displayed in an "Archive" layout building block which is an extremely powerful way to display documents on a page. It can be auto-populated by collection or by category, or posts can be individually selected. Pagination controls will automatically appear if the number of results exceeds the number of items per page.', - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - textFormat: 0, - version: 1, - }, - ], - direction: 'ltr', - format: '', - indent: 0, - version: 1, - }, - }, - populateBy: 'collection', - relationTo: 'posts', - }, { blockName: 'CTA', blockType: 'cta', @@ -666,9 +610,9 @@ export const home: (args: HomeArgs) => RequiredDataFromCollectionSlug<'pages'> = }, ], meta: { - description: 'An open-source website built with Payload and Next.js.', + description: 'Der Preis für herausragenden Mittelstand in Bayern.', image: heroImage.id, - title: 'Payload Website Template', + title: 'Bayerischer Mittelstandspreis', }, title: 'Home', } diff --git a/src/endpoints/seed/index.ts b/src/endpoints/seed/index.ts index 986a024..1c40ae3 100644 --- a/src/endpoints/seed/index.ts +++ b/src/endpoints/seed/index.ts @@ -1,7 +1,5 @@ import type { CollectionSlug, GlobalSlug, Payload, PayloadRequest, File } from 'payload' -import { contactForm as contactFormData } from './contact-form' -import { contact as contactPageData } from './contact-page' import { home } from './home' import { image1 } from './image-1' import { image2 } from './image-2' @@ -14,19 +12,13 @@ import { defaultFooterData, defaultHeaderData } from '@/spa/cmsNavigation' import { defaultSiteSettings } from '@/spa/siteSettings' const collections: CollectionSlug[] = [ - 'categories', 'media', 'pages', 'posts', - 'forms', - 'form-submissions', - 'search', ] const globals: GlobalSlug[] = ['header', 'footer', 'site-settings', 'application-phase'] -const categories = ['Technology', 'News', 'Finance', 'Design', 'Software', 'Engineering'] - // Next.js revalidation errors are normal when seeding the database without a server running // i.e. running `yarn seed` locally instead of using the admin UI within an active app // The app is not running to revalidate the pages and so the API routes are not available @@ -128,15 +120,6 @@ export const seed = async ({ data: imageHero1, file: hero1Buffer, }), - categories.map((category) => - payload.create({ - collection: 'categories', - data: { - title: category, - slug: category, - }, - }), - ), ]) payload.logger.info(`— Seeding posts...`) @@ -193,14 +176,6 @@ export const seed = async ({ }, }) - payload.logger.info(`— Seeding contact form...`) - - const contactForm = await payload.create({ - collection: 'forms', - depth: 0, - data: contactFormData, - }) - payload.logger.info(`— Seeding pages...`) await Promise.all([ @@ -209,11 +184,6 @@ export const seed = async ({ depth: 0, data: home({ heroImage: imageHomeDoc, metaImage: image2Doc }), }), - payload.create({ - collection: 'pages', - depth: 0, - data: contactPageData({ contactForm: contactForm }), - }), ]) payload.logger.info(`— Seeding globals...`) diff --git a/src/heros/PostHero/index.tsx b/src/heros/PostHero/index.tsx index e426017..48b2833 100644 --- a/src/heros/PostHero/index.tsx +++ b/src/heros/PostHero/index.tsx @@ -9,7 +9,7 @@ import { formatAuthors } from '@/utilities/formatAuthors' export const PostHero: React.FC<{ post: Post }> = ({ post }) => { - const { categories, heroImage, populatedAuthors, publishedAt, title } = post + const { heroImage, populatedAuthors, publishedAt, title } = post const hasAuthors = populatedAuthors && populatedAuthors.length > 0 && formatAuthors(populatedAuthors) !== '' @@ -18,26 +18,6 @@ export const PostHero: React.FC<{
-
- {categories?.map((category, index) => { - if (typeof category === 'object' && category !== null) { - const { title: categoryTitle } = category - - const titleToUse = categoryTitle || 'Untitled category' - - const isLast = index === categories.length - 1 - - return ( - - {titleToUse} - {!isLast && ,  } - - ) - } - return null - })} -
-

{title}

diff --git a/src/hooks/revalidateRedirects.ts b/src/hooks/revalidateRedirects.ts deleted file mode 100644 index 537e0c1..0000000 --- a/src/hooks/revalidateRedirects.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type { CollectionAfterChangeHook } from 'payload' - -import { revalidateTag } from 'next/cache' - -export const revalidateRedirects: CollectionAfterChangeHook = ({ doc, req: { payload } }) => { - payload.logger.info(`Revalidating redirects`) - - revalidateTag('redirects', 'max') - - return doc -} diff --git a/src/migrations/20260630_172754_network_partner_logo_uploads.json b/src/migrations/20260630_172754_network_partner_logo_uploads.json new file mode 100644 index 0000000..255509b --- /dev/null +++ b/src/migrations/20260630_172754_network_partner_logo_uploads.json @@ -0,0 +1,33553 @@ +{ + "version": "6", + "dialect": "sqlite", + "tables": { + "pages_hero_links": { + "name": "pages_hero_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_hero_links_order_idx": { + "name": "pages_hero_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_hero_links_parent_id_idx": { + "name": "pages_hero_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_hero_links_parent_id_fk": { + "name": "pages_hero_links_parent_id_fk", + "tableFrom": "pages_hero_links", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_cta_links": { + "name": "pages_blocks_cta_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_blocks_cta_links_order_idx": { + "name": "pages_blocks_cta_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_cta_links_parent_id_idx": { + "name": "pages_blocks_cta_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_cta_links_parent_id_fk": { + "name": "pages_blocks_cta_links_parent_id_fk", + "tableFrom": "pages_blocks_cta_links", + "tableTo": "pages_blocks_cta", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_cta": { + "name": "pages_blocks_cta", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_cta_order_idx": { + "name": "pages_blocks_cta_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_cta_parent_id_idx": { + "name": "pages_blocks_cta_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_cta_path_idx": { + "name": "pages_blocks_cta_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_cta_parent_id_fk": { + "name": "pages_blocks_cta_parent_id_fk", + "tableFrom": "pages_blocks_cta", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_content_columns": { + "name": "pages_blocks_content_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "size": { + "name": "size", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oneThird'" + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_link": { + "name": "enable_link", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_blocks_content_columns_order_idx": { + "name": "pages_blocks_content_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_content_columns_parent_id_idx": { + "name": "pages_blocks_content_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_content_columns_parent_id_fk": { + "name": "pages_blocks_content_columns_parent_id_fk", + "tableFrom": "pages_blocks_content_columns", + "tableTo": "pages_blocks_content", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_content": { + "name": "pages_blocks_content", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_content_order_idx": { + "name": "pages_blocks_content_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_content_parent_id_idx": { + "name": "pages_blocks_content_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_content_path_idx": { + "name": "pages_blocks_content_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_content_parent_id_fk": { + "name": "pages_blocks_content_parent_id_fk", + "tableFrom": "pages_blocks_content", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_media_block": { + "name": "pages_blocks_media_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_media_block_order_idx": { + "name": "pages_blocks_media_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_media_block_parent_id_idx": { + "name": "pages_blocks_media_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_media_block_path_idx": { + "name": "pages_blocks_media_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "pages_blocks_media_block_media_idx": { + "name": "pages_blocks_media_block_media_idx", + "columns": [ + "media_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_media_block_media_id_media_id_fk": { + "name": "pages_blocks_media_block_media_id_media_id_fk", + "tableFrom": "pages_blocks_media_block", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_media_block_parent_id_fk": { + "name": "pages_blocks_media_block_parent_id_fk", + "tableFrom": "pages_blocks_media_block", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_archive": { + "name": "pages_blocks_archive", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "populate_by": { + "name": "populate_by", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'collection'" + }, + "relation_to": { + "name": "relation_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'posts'" + }, + "limit": { + "name": "limit", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 10 + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_archive_order_idx": { + "name": "pages_blocks_archive_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_archive_parent_id_idx": { + "name": "pages_blocks_archive_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_archive_path_idx": { + "name": "pages_blocks_archive_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_archive_parent_id_fk": { + "name": "pages_blocks_archive_parent_id_fk", + "tableFrom": "pages_blocks_archive", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_form_block": { + "name": "pages_blocks_form_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "form_id": { + "name": "form_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_intro": { + "name": "enable_intro", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_form_block_order_idx": { + "name": "pages_blocks_form_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_form_block_parent_id_idx": { + "name": "pages_blocks_form_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_form_block_path_idx": { + "name": "pages_blocks_form_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "pages_blocks_form_block_form_idx": { + "name": "pages_blocks_form_block_form_idx", + "columns": [ + "form_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_form_block_form_id_forms_id_fk": { + "name": "pages_blocks_form_block_form_id_forms_id_fk", + "tableFrom": "pages_blocks_form_block", + "tableTo": "forms", + "columnsFrom": [ + "form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_form_block_parent_id_fk": { + "name": "pages_blocks_form_block_parent_id_fk", + "tableFrom": "pages_blocks_form_block", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_hero_partners": { + "name": "pages_home_hero_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_hero_partners_order_idx": { + "name": "pages_home_hero_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_hero_partners_parent_id_idx": { + "name": "pages_home_hero_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_hero_partners_parent_id_fk": { + "name": "pages_home_hero_partners_parent_id_fk", + "tableFrom": "pages_home_hero_partners", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_quick_check_criteria": { + "name": "pages_home_quick_check_criteria", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_quick_check_criteria_order_idx": { + "name": "pages_home_quick_check_criteria_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_quick_check_criteria_parent_id_idx": { + "name": "pages_home_quick_check_criteria_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_quick_check_criteria_parent_id_fk": { + "name": "pages_home_quick_check_criteria_parent_id_fk", + "tableFrom": "pages_home_quick_check_criteria", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_intro_stats": { + "name": "pages_home_intro_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_intro_stats_order_idx": { + "name": "pages_home_intro_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_intro_stats_parent_id_idx": { + "name": "pages_home_intro_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_intro_stats_parent_id_fk": { + "name": "pages_home_intro_stats_parent_id_fk", + "tableFrom": "pages_home_intro_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_testimonials_items": { + "name": "pages_home_testimonials_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_testimonials_items_order_idx": { + "name": "pages_home_testimonials_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_testimonials_items_parent_id_idx": { + "name": "pages_home_testimonials_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_home_testimonials_items_image_idx": { + "name": "pages_home_testimonials_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_testimonials_items_image_id_media_id_fk": { + "name": "pages_home_testimonials_items_image_id_media_id_fk", + "tableFrom": "pages_home_testimonials_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_testimonials_items_parent_id_fk": { + "name": "pages_home_testimonials_items_parent_id_fk", + "tableFrom": "pages_home_testimonials_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_benefits_items": { + "name": "pages_home_benefits_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_benefits_items_order_idx": { + "name": "pages_home_benefits_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_benefits_items_parent_id_idx": { + "name": "pages_home_benefits_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_benefits_items_parent_id_fk": { + "name": "pages_home_benefits_items_parent_id_fk", + "tableFrom": "pages_home_benefits_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_application_benefits": { + "name": "pages_home_application_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_application_benefits_order_idx": { + "name": "pages_home_application_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_application_benefits_parent_id_idx": { + "name": "pages_home_application_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_application_benefits_parent_id_fk": { + "name": "pages_home_application_benefits_parent_id_fk", + "tableFrom": "pages_home_application_benefits", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_self_steps": { + "name": "home_self_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "home_self_steps_order_idx": { + "name": "home_self_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_self_steps_parent_id_idx": { + "name": "home_self_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_self_steps_parent_id_fk": { + "name": "home_self_steps_parent_id_fk", + "tableFrom": "home_self_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_nom_steps": { + "name": "home_nom_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "home_nom_steps_order_idx": { + "name": "home_nom_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_nom_steps_parent_id_idx": { + "name": "home_nom_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_nom_steps_parent_id_fk": { + "name": "home_nom_steps_parent_id_fk", + "tableFrom": "home_nom_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_emp_opts": { + "name": "home_emp_opts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "home_emp_opts_order_idx": { + "name": "home_emp_opts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_emp_opts_parent_id_idx": { + "name": "home_emp_opts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_emp_opts_parent_id_fk": { + "name": "home_emp_opts_parent_id_fk", + "tableFrom": "home_emp_opts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_items": { + "name": "pages_contact_info_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "lines": { + "name": "lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_items_order_idx": { + "name": "pages_contact_info_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_items_parent_id_idx": { + "name": "pages_contact_info_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_items_parent_id_fk": { + "name": "pages_contact_info_items_parent_id_fk", + "tableFrom": "pages_contact_info_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_form_copy_steps": { + "name": "pages_contact_info_form_copy_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_form_copy_steps_order_idx": { + "name": "pages_contact_info_form_copy_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_form_copy_steps_parent_id_idx": { + "name": "pages_contact_info_form_copy_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_form_copy_steps_parent_id_fk": { + "name": "pages_contact_info_form_copy_steps_parent_id_fk", + "tableFrom": "pages_contact_info_form_copy_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_form_copy_subjects": { + "name": "pages_contact_info_form_copy_subjects", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_form_copy_subjects_order_idx": { + "name": "pages_contact_info_form_copy_subjects_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_form_copy_subjects_parent_id_idx": { + "name": "pages_contact_info_form_copy_subjects_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_form_copy_subjects_parent_id_fk": { + "name": "pages_contact_info_form_copy_subjects_parent_id_fk", + "tableFrom": "pages_contact_info_form_copy_subjects", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_deadlines_items": { + "name": "pages_contact_deadlines_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_deadlines_items_order_idx": { + "name": "pages_contact_deadlines_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_deadlines_items_parent_id_idx": { + "name": "pages_contact_deadlines_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_deadlines_items_parent_id_fk": { + "name": "pages_contact_deadlines_items_parent_id_fk", + "tableFrom": "pages_contact_deadlines_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_faq_items": { + "name": "pages_contact_faq_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_faq_items_order_idx": { + "name": "pages_contact_faq_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_faq_items_parent_id_idx": { + "name": "pages_contact_faq_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_faq_items_parent_id_fk": { + "name": "pages_contact_faq_items_parent_id_fk", + "tableFrom": "pages_contact_faq_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "proc_steps": { + "name": "proc_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + } + }, + "indexes": { + "proc_steps_order_idx": { + "name": "proc_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "proc_steps_parent_id_idx": { + "name": "proc_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "proc_steps_parent_id_fk": { + "name": "proc_steps_parent_id_fk", + "tableFrom": "proc_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "elig_crit": { + "name": "elig_crit", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + } + }, + "indexes": { + "elig_crit_order_idx": { + "name": "elig_crit_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "elig_crit_parent_id_idx": { + "name": "elig_crit_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "elig_crit_parent_id_fk": { + "name": "elig_crit_parent_id_fk", + "tableFrom": "elig_crit", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "elig_notes": { + "name": "elig_notes", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'building2'" + } + }, + "indexes": { + "elig_notes_order_idx": { + "name": "elig_notes_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "elig_notes_parent_id_idx": { + "name": "elig_notes_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "elig_notes_parent_id_fk": { + "name": "elig_notes_parent_id_fk", + "tableFrom": "elig_notes", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "app_inst": { + "name": "app_inst", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "app_inst_order_idx": { + "name": "app_inst_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "app_inst_parent_id_idx": { + "name": "app_inst_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "app_inst_parent_id_fk": { + "name": "app_inst_parent_id_fk", + "tableFrom": "app_inst", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "way_facts": { + "name": "way_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "way_facts_order_idx": { + "name": "way_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "way_facts_parent_id_idx": { + "name": "way_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "way_facts_parent_id_fk": { + "name": "way_facts_parent_id_fk", + "tableFrom": "way_facts", + "tableTo": "app_ways", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "app_ways": { + "name": "app_ways", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'send'" + }, + "featured": { + "name": "featured", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "list_type": { + "name": "list_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'facts'" + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + } + }, + "indexes": { + "app_ways_order_idx": { + "name": "app_ways_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "app_ways_parent_id_idx": { + "name": "app_ways_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "app_ways_parent_id_fk": { + "name": "app_ways_parent_id_fk", + "tableFrom": "app_ways", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "date_mob": { + "name": "date_mob", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "date_mob_order_idx": { + "name": "date_mob_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "date_mob_parent_id_idx": { + "name": "date_mob_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "date_mob_parent_id_fk": { + "name": "date_mob_parent_id_fk", + "tableFrom": "date_mob", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "date_desk": { + "name": "date_desk", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "date_desk_order_idx": { + "name": "date_desk_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "date_desk_parent_id_idx": { + "name": "date_desk_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "date_desk_parent_id_fk": { + "name": "date_desk_parent_id_fk", + "tableFrom": "date_desk", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "award_cards": { + "name": "award_cards", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "article_cta_label": { + "name": "article_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel lesen'" + }, + "article_cta_url": { + "name": "article_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "mailto_cta_label": { + "name": "mailto_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "mailto_cta_url": { + "name": "mailto_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mailto:info@bmp-bayern.de'" + } + }, + "indexes": { + "award_cards_order_idx": { + "name": "award_cards_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "award_cards_parent_id_idx": { + "name": "award_cards_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "award_cards_image_idx": { + "name": "award_cards_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "award_cards_image_id_media_id_fk": { + "name": "award_cards_image_id_media_id_fk", + "tableFrom": "award_cards", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "award_cards_parent_id_fk": { + "name": "award_cards_parent_id_fk", + "tableFrom": "award_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_facts": { + "name": "form_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "form_facts_order_idx": { + "name": "form_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "form_facts_parent_id_idx": { + "name": "form_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_facts_parent_id_fk": { + "name": "form_facts_parent_id_fk", + "tableFrom": "form_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "self_steps": { + "name": "self_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "self_steps_order_idx": { + "name": "self_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "self_steps_parent_id_idx": { + "name": "self_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "self_steps_parent_id_fk": { + "name": "self_steps_parent_id_fk", + "tableFrom": "self_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "nom_steps": { + "name": "nom_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "nom_steps_order_idx": { + "name": "nom_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "nom_steps_parent_id_idx": { + "name": "nom_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "nom_steps_parent_id_fk": { + "name": "nom_steps_parent_id_fk", + "tableFrom": "nom_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "emp_opts": { + "name": "emp_opts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "emp_opts_order_idx": { + "name": "emp_opts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "emp_opts_parent_id_idx": { + "name": "emp_opts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "emp_opts_parent_id_fk": { + "name": "emp_opts_parent_id_fk", + "tableFrom": "emp_opts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_hero_stats": { + "name": "about_hero_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_hero_stats_order_idx": { + "name": "about_hero_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_hero_stats_parent_id_idx": { + "name": "about_hero_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_hero_stats_parent_id_fk": { + "name": "about_hero_stats_parent_id_fk", + "tableFrom": "about_hero_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_prize_body": { + "name": "about_prize_body", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_prize_body_order_idx": { + "name": "about_prize_body_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_prize_body_parent_id_idx": { + "name": "about_prize_body_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_prize_body_parent_id_fk": { + "name": "about_prize_body_parent_id_fk", + "tableFrom": "about_prize_body", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_prize_facts": { + "name": "about_prize_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_prize_facts_order_idx": { + "name": "about_prize_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_prize_facts_parent_id_idx": { + "name": "about_prize_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_prize_facts_parent_id_fk": { + "name": "about_prize_facts_parent_id_fk", + "tableFrom": "about_prize_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_mid_body": { + "name": "about_mid_body", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_mid_body_order_idx": { + "name": "about_mid_body_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_mid_body_parent_id_idx": { + "name": "about_mid_body_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_mid_body_parent_id_fk": { + "name": "about_mid_body_parent_id_fk", + "tableFrom": "about_mid_body", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_tst_items": { + "name": "about_tst_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_tst_items_order_idx": { + "name": "about_tst_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_tst_items_parent_id_idx": { + "name": "about_tst_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "about_tst_items_image_idx": { + "name": "about_tst_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_tst_items_image_id_media_id_fk": { + "name": "about_tst_items_image_id_media_id_fk", + "tableFrom": "about_tst_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "about_tst_items_parent_id_fk": { + "name": "about_tst_items_parent_id_fk", + "tableFrom": "about_tst_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_hist_items": { + "name": "about_hist_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_hist_items_order_idx": { + "name": "about_hist_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_hist_items_parent_id_idx": { + "name": "about_hist_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_hist_items_parent_id_fk": { + "name": "about_hist_items_parent_id_fk", + "tableFrom": "about_hist_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_goal_items": { + "name": "about_goal_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_goal_items_order_idx": { + "name": "about_goal_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_goal_items_parent_id_idx": { + "name": "about_goal_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_goal_items_parent_id_fk": { + "name": "about_goal_items_parent_id_fk", + "tableFrom": "about_goal_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_val_items": { + "name": "about_val_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_val_items_order_idx": { + "name": "about_val_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_val_items_parent_id_idx": { + "name": "about_val_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_val_items_parent_id_fk": { + "name": "about_val_items_parent_id_fk", + "tableFrom": "about_val_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "imp_sections": { + "name": "imp_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "imp_sections_order_idx": { + "name": "imp_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "imp_sections_parent_id_idx": { + "name": "imp_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "imp_sections_parent_id_fk": { + "name": "imp_sections_parent_id_fk", + "tableFrom": "imp_sections", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "data_sections": { + "name": "data_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "data_sections_order_idx": { + "name": "data_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "data_sections_parent_id_idx": { + "name": "data_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "data_sections_parent_id_fk": { + "name": "data_sections_parent_id_fk", + "tableFrom": "data_sections", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_press_index_events_status_labels": { + "name": "pages_press_index_events_status_labels", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_press_index_events_status_labels_order_idx": { + "name": "pages_press_index_events_status_labels_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_press_index_events_status_labels_parent_id_idx": { + "name": "pages_press_index_events_status_labels_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_press_index_events_status_labels_parent_id_fk": { + "name": "pages_press_index_events_status_labels_parent_id_fk", + "tableFrom": "pages_press_index_events_status_labels", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "press_events_fb": { + "name": "press_events_fb", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "press_events_fb_order_idx": { + "name": "press_events_fb_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "press_events_fb_parent_id_idx": { + "name": "press_events_fb_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "press_events_fb_image_idx": { + "name": "press_events_fb_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "press_events_fb_image_id_media_id_fk": { + "name": "press_events_fb_image_id_media_id_fk", + "tableFrom": "press_events_fb", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "press_events_fb_parent_id_fk": { + "name": "press_events_fb_parent_id_fk", + "tableFrom": "press_events_fb", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "press_news_fb": { + "name": "press_news_fb", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "press_news_fb_order_idx": { + "name": "press_news_fb_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "press_news_fb_parent_id_idx": { + "name": "press_news_fb_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "press_news_fb_image_idx": { + "name": "press_news_fb_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "press_news_fb_image_id_media_id_fk": { + "name": "press_news_fb_image_id_media_id_fk", + "tableFrom": "press_news_fb", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "press_news_fb_parent_id_fk": { + "name": "press_news_fb_parent_id_fk", + "tableFrom": "press_news_fb", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "upload_stats": { + "name": "upload_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "upload_stats_order_idx": { + "name": "upload_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "upload_stats_parent_id_idx": { + "name": "upload_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "upload_stats_parent_id_fk": { + "name": "upload_stats_parent_id_fk", + "tableFrom": "upload_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "upload_req_cards": { + "name": "upload_req_cards", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "upload_req_cards_order_idx": { + "name": "upload_req_cards_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "upload_req_cards_parent_id_idx": { + "name": "upload_req_cards_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "upload_req_cards_parent_id_fk": { + "name": "upload_req_cards_parent_id_fk", + "tableFrom": "upload_req_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_patrons": { + "name": "network_patrons", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line1": { + "name": "title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line2": { + "name": "title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "institution": { + "name": "institution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_patrons_order_idx": { + "name": "network_patrons_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_patrons_parent_id_idx": { + "name": "network_patrons_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_patrons_image_upload_idx": { + "name": "network_patrons_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_patrons_image_upload_id_media_id_fk": { + "name": "network_patrons_image_upload_id_media_id_fk", + "tableFrom": "network_patrons", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_patrons_parent_id_fk": { + "name": "network_patrons_parent_id_fk", + "tableFrom": "network_patrons", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury_stats": { + "name": "network_jury_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_stats_order_idx": { + "name": "network_jury_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_stats_parent_id_idx": { + "name": "network_jury_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_stats_parent_id_fk": { + "name": "network_jury_stats_parent_id_fk", + "tableFrom": "network_jury_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury_d_stats": { + "name": "network_jury_d_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_d_stats_order_idx": { + "name": "network_jury_d_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_d_stats_parent_id_idx": { + "name": "network_jury_d_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_d_stats_parent_id_fk": { + "name": "network_jury_d_stats_parent_id_fk", + "tableFrom": "network_jury_d_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury": { + "name": "network_jury", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bio": { + "name": "bio", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_order_idx": { + "name": "network_jury_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_parent_id_idx": { + "name": "network_jury_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_jury_image_upload_idx": { + "name": "network_jury_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_image_upload_id_media_id_fk": { + "name": "network_jury_image_upload_id_media_id_fk", + "tableFrom": "network_jury", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_jury_parent_id_fk": { + "name": "network_jury_parent_id_fk", + "tableFrom": "network_jury", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_eval": { + "name": "network_eval", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_eval_order_idx": { + "name": "network_eval_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_eval_parent_id_idx": { + "name": "network_eval_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_eval_parent_id_fk": { + "name": "network_eval_parent_id_fk", + "tableFrom": "network_eval", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_tiers": { + "name": "network_tiers", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_tiers_order_idx": { + "name": "network_tiers_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_tiers_parent_id_idx": { + "name": "network_tiers_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_tiers_parent_id_fk": { + "name": "network_tiers_parent_id_fk", + "tableFrom": "network_tiers", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_partners": { + "name": "network_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "full_desc": { + "name": "full_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_kind": { + "name": "logo_kind", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'text'" + }, + "logo_text": { + "name": "logo_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_subtext": { + "name": "logo_subtext", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_color": { + "name": "logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "linkedin": { + "name": "linkedin", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_img": { + "name": "hero_img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_partners_order_idx": { + "name": "network_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_partners_parent_id_idx": { + "name": "network_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_partners_logo_idx": { + "name": "network_partners_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_partners_logo_id_media_id_fk": { + "name": "network_partners_logo_id_media_id_fk", + "tableFrom": "network_partners", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_partners_parent_id_fk": { + "name": "network_partners_parent_id_fk", + "tableFrom": "network_partners", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_sponsor_bens": { + "name": "network_sponsor_bens", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sub": { + "name": "sub", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_sponsor_bens_order_idx": { + "name": "network_sponsor_bens_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_sponsor_bens_parent_id_idx": { + "name": "network_sponsor_bens_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_sponsor_bens_parent_id_fk": { + "name": "network_sponsor_bens_parent_id_fk", + "tableFrom": "network_sponsor_bens", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_form_steps": { + "name": "network_form_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_form_steps_order_idx": { + "name": "network_form_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_form_steps_parent_id_idx": { + "name": "network_form_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_form_steps_parent_id_fk": { + "name": "network_form_steps_parent_id_fk", + "tableFrom": "network_form_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_form_pkgs": { + "name": "network_form_pkgs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_form_pkgs_order_idx": { + "name": "network_form_pkgs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_form_pkgs_parent_id_idx": { + "name": "network_form_pkgs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_form_pkgs_parent_id_fk": { + "name": "network_form_pkgs_parent_id_fk", + "tableFrom": "network_form_pkgs", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_hero_stats": { + "name": "member_hero_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_hero_stats_order_idx": { + "name": "member_hero_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_hero_stats_parent_id_idx": { + "name": "member_hero_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_hero_stats_parent_id_fk": { + "name": "member_hero_stats_parent_id_fk", + "tableFrom": "member_hero_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_benefits": { + "name": "member_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'users'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_benefits_order_idx": { + "name": "member_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_benefits_parent_id_idx": { + "name": "member_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_benefits_parent_id_fk": { + "name": "member_benefits_parent_id_fk", + "tableFrom": "member_benefits", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_about_copy": { + "name": "member_about_copy", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_about_copy_order_idx": { + "name": "member_about_copy_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_about_copy_parent_id_idx": { + "name": "member_about_copy_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_about_copy_parent_id_fk": { + "name": "member_about_copy_parent_id_fk", + "tableFrom": "member_about_copy", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_about_facts": { + "name": "member_about_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_about_facts_order_idx": { + "name": "member_about_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_about_facts_parent_id_idx": { + "name": "member_about_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_about_facts_parent_id_fk": { + "name": "member_about_facts_parent_id_fk", + "tableFrom": "member_about_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_pricing": { + "name": "member_pricing", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "max": { + "name": "max", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "annual": { + "name": "annual", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_pricing_order_idx": { + "name": "member_pricing_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_pricing_parent_id_idx": { + "name": "member_pricing_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_pricing_parent_id_fk": { + "name": "member_pricing_parent_id_fk", + "tableFrom": "member_pricing", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_app_options": { + "name": "member_app_options", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "number": { + "name": "number", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "eyebrow": { + "name": "eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "file_id": { + "name": "file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "download": { + "name": "download", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_app_options_order_idx": { + "name": "member_app_options_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_app_options_parent_id_idx": { + "name": "member_app_options_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "member_app_options_file_idx": { + "name": "member_app_options_file_idx", + "columns": [ + "file_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_app_options_file_id_media_id_fk": { + "name": "member_app_options_file_id_media_id_fk", + "tableFrom": "member_app_options", + "tableTo": "media", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "member_app_options_parent_id_fk": { + "name": "member_app_options_parent_id_fk", + "tableFrom": "member_app_options", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_promises": { + "name": "member_promises", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_promises_order_idx": { + "name": "member_promises_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_promises_parent_id_idx": { + "name": "member_promises_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_promises_parent_id_fk": { + "name": "member_promises_parent_id_fk", + "tableFrom": "member_promises", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_quotes": { + "name": "member_quotes", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "initials": { + "name": "initials", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_quotes_order_idx": { + "name": "member_quotes_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_quotes_parent_id_idx": { + "name": "member_quotes_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_quotes_parent_id_fk": { + "name": "member_quotes_parent_id_fk", + "tableFrom": "member_quotes", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_faq": { + "name": "member_faq", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_faq_order_idx": { + "name": "member_faq_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_faq_parent_id_idx": { + "name": "member_faq_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_faq_parent_id_fk": { + "name": "member_faq_parent_id_fk", + "tableFrom": "member_faq", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages": { + "name": "pages", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_type": { + "name": "hero_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'lowImpact'" + }, + "hero_rich_text": { + "name": "hero_rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_media_id": { + "name": "hero_media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_hero_background_image_id": { + "name": "home_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_hero_image_alt": { + "name": "home_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Awards Gala'" + }, + "home_hero_badge": { + "name": "home_hero_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026 geschlossen'" + }, + "home_hero_heading_line1": { + "name": "home_hero_heading_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERNS BESTE'" + }, + "home_hero_heading_accent": { + "name": "home_hero_heading_accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTÄNDLER.'" + }, + "home_hero_description": { + "name": "home_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis würdigt herausragende Leistungen – von Innovation über Nachhaltigkeit bis hin zur Exzellenz.'" + }, + "home_hero_primary_cta_label": { + "name": "home_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "home_hero_primary_cta_url": { + "name": "home_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "home_hero_secondary_cta_label": { + "name": "home_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "home_hero_secondary_cta_url": { + "name": "home_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "home_hero_video_label": { + "name": "home_hero_video_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Film abspielen'" + }, + "home_hero_partners_label": { + "name": "home_hero_partners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unsere Partner'" + }, + "home_quick_check_eyebrow": { + "name": "home_quick_check_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "home_quick_check_heading": { + "name": "home_quick_check_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SIND SIE\nBERECHTIGT?'" + }, + "home_quick_check_image_id": { + "name": "home_quick_check_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_quick_check_image_alt": { + "name": "home_quick_check_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bühne'" + }, + "home_quick_check_body": { + "name": "home_quick_check_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte KMU im Freistaat. Fünf Kriterien entscheiden, erfüllen Sie alle fünf, steht Ihrer Bewerbung nichts im Weg.'" + }, + "home_quick_check_note": { + "name": "home_quick_check_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auch ein Verbund bzw. eine Gemeinschaft von mittelständischen Unternehmen oder von mittelständischen Unternehmen und Organisationen/Institutionen mit Schwerpunkt in Bayern kann teilnehmen.'" + }, + "home_quick_check_cta_label": { + "name": "home_quick_check_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Weg zum Preis'" + }, + "home_quick_check_cta_url": { + "name": "home_quick_check_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "home_intro_eyebrow": { + "name": "home_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ein Gewinn für alle'" + }, + "home_intro_heading": { + "name": "home_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSZEICHNUNG\nFÜR DIE BESTEN.'" + }, + "home_intro_image_id": { + "name": "home_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_intro_image_alt": { + "name": "home_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Auszeichnung'" + }, + "home_intro_quote": { + "name": "home_intro_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Ein Unternehmen zu gründen erfordert nicht allein spezielle Fähigkeiten. Es erfordert Persönlichkeit!“'" + }, + "home_intro_body": { + "name": "home_intro_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir suchen Vorbilder, die sich trotz aller Risiken nicht scheuen, Visionen in Businesspläne und Ideen in Unternehmungen zu verwandeln, und das mit großem persönlichen Einsatz und Verantwortung für Ihre Mitarbeiter. Seit vielen Jahren würdigen wir herausragende unternehmerische Leistungen im Freistaat.'" + }, + "home_intro_cta_label": { + "name": "home_intro_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr über den Preis'" + }, + "home_intro_cta_url": { + "name": "home_intro_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/der-bmp'" + }, + "home_winners_eyebrow": { + "name": "home_winners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Success Stories'" + }, + "home_winners_heading": { + "name": "home_winners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DIE BESTEN UNTERNEHMEN IN BAYERN'" + }, + "home_winners_cta_label": { + "name": "home_winners_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "home_winners_cta_url": { + "name": "home_winners_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "home_winners_fallback_image_id": { + "name": "home_winners_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_winners_card_fallback_title": { + "name": "home_winners_card_fallback_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "home_winners_hover_label": { + "name": "home_winners_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "home_testimonials_eyebrow": { + "name": "home_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "home_testimonials_heading": { + "name": "home_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "home_testimonials_desktop_heading": { + "name": "home_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "home_testimonials_year_prefix": { + "name": "home_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "home_testimonials_previous_label": { + "name": "home_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "home_testimonials_next_label": { + "name": "home_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "home_testimonials_slide_label_prefix": { + "name": "home_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "home_benefits_eyebrow": { + "name": "home_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr als nur ein Preis'" + }, + "home_benefits_heading": { + "name": "home_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM SICH DIE\nTEILNAHME LOHNT.'" + }, + "home_benefits_image_id": { + "name": "home_benefits_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_benefits_image_alt": { + "name": "home_benefits_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Netzwerk'" + }, + "home_benefits_image_label": { + "name": "home_benefits_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala-Netzwerk'" + }, + "home_application_eyebrow": { + "name": "home_application_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Chance ergreifen'" + }, + "home_application_heading": { + "name": "home_application_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN\nAUCH SIE\nGESCHICHTE.'" + }, + "home_application_body": { + "name": "home_application_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands – vollständig kostenfrei.'" + }, + "home_application_award_image_id": { + "name": "home_application_award_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_application_award_image_alt": { + "name": "home_application_award_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bayerischer Mittelstandspreis'" + }, + "home_application_award_caption": { + "name": "home_application_award_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "home_application_form_eyebrow": { + "name": "home_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung 2026'" + }, + "home_application_form_title": { + "name": "home_application_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos bewerben'" + }, + "home_application_footnote": { + "name": "home_application_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos und unverbindlich –'" + }, + "home_application_footnote_strong": { + "name": "home_application_footnote_strong", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'keine Teilnahmegebühr'" + }, + "home_form_step_complete_label": { + "name": "home_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "home_form_back_label": { + "name": "home_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "home_form_next_label": { + "name": "home_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "home_form_submit_label": { + "name": "home_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "home_form_yes_label": { + "name": "home_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "home_form_no_label": { + "name": "home_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "home_form_required_suffix": { + "name": "home_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "home_form_validation_choose": { + "name": "home_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "home_form_validation_required": { + "name": "home_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "home_form_validation_invalid_email": { + "name": "home_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "home_form_type_step_eyebrow": { + "name": "home_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "home_form_type_step_heading": { + "name": "home_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "home_form_type_step_self_title": { + "name": "home_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "home_form_type_step_self_desc": { + "name": "home_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "home_form_type_step_nomination_title": { + "name": "home_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "home_form_type_step_nomination_desc": { + "name": "home_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "home_form_eligibility_allowed_employee_values": { + "name": "home_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "home_form_eligibility_required_bayern_value": { + "name": "home_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "home_form_eligibility_eyebrow": { + "name": "home_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "home_form_eligibility_heading": { + "name": "home_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "home_form_eligibility_employees_label": { + "name": "home_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "home_form_eligibility_bayern_label": { + "name": "home_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "home_form_eligibility_owner_label": { + "name": "home_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "home_form_eligibility_ineligible_heading": { + "name": "home_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "home_form_eligibility_ineligible_body": { + "name": "home_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "home_form_eligibility_ineligible_contact_prefix": { + "name": "home_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "home_form_eligibility_ineligible_contact_email": { + "name": "home_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "home_form_self_contact_eyebrow": { + "name": "home_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "home_form_self_contact_heading": { + "name": "home_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "home_form_self_contact_company_label": { + "name": "home_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "home_form_self_contact_company_placeholder": { + "name": "home_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "home_form_self_contact_name_label": { + "name": "home_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "home_form_self_contact_name_placeholder": { + "name": "home_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "home_form_self_contact_email_label": { + "name": "home_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "home_form_self_contact_email_placeholder": { + "name": "home_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "home_form_self_contact_phone_label": { + "name": "home_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "home_form_self_contact_phone_placeholder": { + "name": "home_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "home_form_self_contact_footnote": { + "name": "home_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "home_form_self_summary_eyebrow": { + "name": "home_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "home_form_self_summary_heading": { + "name": "home_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "home_form_self_summary_company_label": { + "name": "home_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "home_form_self_summary_employees_label": { + "name": "home_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "home_form_self_summary_location_label": { + "name": "home_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "home_form_self_summary_location_prefix": { + "name": "home_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "home_form_self_summary_contact_label": { + "name": "home_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "home_form_nomination_company_eyebrow": { + "name": "home_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "home_form_nomination_company_heading": { + "name": "home_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "home_form_nomination_company_company_label": { + "name": "home_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "home_form_nomination_company_company_placeholder": { + "name": "home_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "home_form_nomination_company_industry_label": { + "name": "home_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "home_form_nomination_company_industry_placeholder": { + "name": "home_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "home_form_nomination_company_location_label": { + "name": "home_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "home_form_nomination_company_location_placeholder": { + "name": "home_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "home_form_nomination_contact_eyebrow": { + "name": "home_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "home_form_nomination_contact_heading": { + "name": "home_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "home_form_nomination_contact_name_label": { + "name": "home_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "home_form_nomination_contact_name_placeholder": { + "name": "home_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "home_form_nomination_contact_email_label": { + "name": "home_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "home_form_nomination_contact_email_placeholder": { + "name": "home_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "home_form_nomination_contact_relationship_label": { + "name": "home_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "home_form_nomination_contact_relationship_placeholder": { + "name": "home_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "home_form_nomination_contact_footnote": { + "name": "home_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "home_form_nomination_summary_eyebrow": { + "name": "home_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "home_form_nomination_summary_heading": { + "name": "home_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "home_form_nomination_summary_company_label": { + "name": "home_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "home_form_nomination_summary_industry_label": { + "name": "home_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "home_form_nomination_summary_location_label": { + "name": "home_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "home_form_nomination_summary_nominated_by_label": { + "name": "home_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "home_form_nomination_summary_empty_value": { + "name": "home_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "home_form_success_self_heading": { + "name": "home_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "home_form_success_nomination_heading": { + "name": "home_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "home_form_success_self_prefix": { + "name": "home_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "home_form_success_self_middle": { + "name": "home_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "home_form_success_self_suffix": { + "name": "home_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "home_form_success_nomination_prefix": { + "name": "home_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "home_form_success_nomination_middle": { + "name": "home_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "home_form_success_nomination_suffix": { + "name": "home_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "home_video_modal_video_id": { + "name": "home_video_modal_video_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_video_modal_title": { + "name": "home_video_modal_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Video-Player Platzhalter'" + }, + "home_video_modal_description": { + "name": "home_video_modal_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hier würde das Image-Video des BMP geladen werden.'" + }, + "home_video_modal_close_label": { + "name": "home_video_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "contact_hero_background_image_id": { + "name": "contact_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "contact_hero_image_alt": { + "name": "contact_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "contact_hero_eyebrow": { + "name": "contact_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dialog & Service'" + }, + "contact_hero_heading": { + "name": "contact_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir sind\nfür Sie da.'" + }, + "contact_hero_description": { + "name": "contact_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen zur Bewerbung, zur Gala oder zu Partnermöglichkeiten – unser Team begleitet Sie persönlich.'" + }, + "contact_info_eyebrow": { + "name": "contact_info_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktkontakt'" + }, + "contact_info_heading": { + "name": "contact_info_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt­möglichkeiten'" + }, + "contact_info_next_award_label": { + "name": "contact_info_next_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächste Preisverleihung:'" + }, + "contact_info_next_award_date": { + "name": "contact_info_next_award_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'22. Oktober 2026'" + }, + "contact_info_form_image_id": { + "name": "contact_info_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "contact_info_form_image_alt": { + "name": "contact_info_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala 2025'" + }, + "contact_info_form_image_label": { + "name": "contact_info_form_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala 2025 München'" + }, + "contact_info_form_eyebrow": { + "name": "contact_info_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontaktformular'" + }, + "contact_info_form_title": { + "name": "contact_info_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie uns'" + }, + "contact_info_form_copy_prompts_subject": { + "name": "contact_info_form_copy_prompts_subject", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Womit können wir Ihnen helfen?'" + }, + "contact_info_form_copy_prompts_contact": { + "name": "contact_info_form_copy_prompts_contact", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie dürfen wir Sie kontaktieren?'" + }, + "contact_info_form_copy_prompts_message": { + "name": "contact_info_form_copy_prompts_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was möchten Sie uns mitteilen?'" + }, + "contact_info_form_copy_fields_name_label": { + "name": "contact_info_form_copy_fields_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Name'" + }, + "contact_info_form_copy_fields_name_placeholder": { + "name": "contact_info_form_copy_fields_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "contact_info_form_copy_fields_email_label": { + "name": "contact_info_form_copy_fields_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "contact_info_form_copy_fields_email_placeholder": { + "name": "contact_info_form_copy_fields_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "contact_info_form_copy_fields_message_label": { + "name": "contact_info_form_copy_fields_message_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht'" + }, + "contact_info_form_copy_fields_message_placeholder": { + "name": "contact_info_form_copy_fields_message_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie Ihre Nachricht…'" + }, + "contact_info_form_copy_validation_name_required": { + "name": "contact_info_form_copy_validation_name_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Namen angeben'" + }, + "contact_info_form_copy_validation_email_required": { + "name": "contact_info_form_copy_validation_email_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte E-Mail angeben'" + }, + "contact_info_form_copy_validation_email_invalid": { + "name": "contact_info_form_copy_validation_email_invalid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "contact_info_form_copy_validation_message_required": { + "name": "contact_info_form_copy_validation_message_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Nachricht verfassen.'" + }, + "contact_info_form_copy_navigation_back": { + "name": "contact_info_form_copy_navigation_back", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "contact_info_form_copy_navigation_next": { + "name": "contact_info_form_copy_navigation_next", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "contact_info_form_copy_navigation_submit": { + "name": "contact_info_form_copy_navigation_submit", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage senden'" + }, + "contact_info_form_copy_success_heading": { + "name": "contact_info_form_copy_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht gesendet'" + }, + "contact_info_form_copy_success_prefix": { + "name": "contact_info_form_copy_success_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Danke,'" + }, + "contact_info_form_copy_success_suffix_before_email": { + "name": "contact_info_form_copy_success_suffix_before_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns zeitnah bei'" + }, + "contact_deadlines_watermark": { + "name": "contact_deadlines_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'2026'" + }, + "contact_deadlines_eyebrow": { + "name": "contact_deadlines_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fahrplan 2026'" + }, + "contact_faq_eyebrow": { + "name": "contact_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Antworten'" + }, + "contact_faq_heading": { + "name": "contact_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige\nFragen'" + }, + "participation_hero_background_image_id": { + "name": "participation_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "participation_hero_image_alt": { + "name": "participation_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Teilnahme BMP'" + }, + "participation_hero_eyebrow": { + "name": "participation_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026'" + }, + "participation_hero_heading": { + "name": "participation_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'GESTALTEN SIE\nBAYERNS ZUKUNFT.'" + }, + "participation_hero_description": { + "name": "participation_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alles, was Sie für Ihre erfolgreiche Bewerbung zum Bayerischen Mittelstandspreis wissen müssen.'" + }, + "participation_process_eyebrow": { + "name": "participation_process_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt für Schritt'" + }, + "participation_process_heading": { + "name": "participation_process_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR WEG ZUM\nPREIS.'" + }, + "participation_process_description": { + "name": "participation_process_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Einreichung bis zur Gala – vier klar definierte Schritte auf dem Weg zur höchsten Auszeichnung des bayerischen Mittelstands.'" + }, + "participation_process_step_prefix": { + "name": "participation_process_step_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt'" + }, + "participation_process_scroll_hint": { + "name": "participation_process_scroll_hint", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Scrollen zum Erkunden'" + }, + "participation_process_progress_label": { + "name": "participation_process_progress_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'01 / 04'" + }, + "participation_eligibility_eyebrow": { + "name": "participation_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berechtigung'" + }, + "participation_eligibility_heading": { + "name": "participation_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER KANN\nTEILNEHMEN?'" + }, + "participation_eligibility_description": { + "name": "participation_eligibility_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vier klar definierte Kriterien: Erfüllen Sie alle, bewerben Sie sich kostenlos und ohne bürokratischen Aufwand.'" + }, + "participation_eligibility_primary_cta_label": { + "name": "participation_eligibility_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "participation_eligibility_primary_cta_url": { + "name": "participation_eligibility_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_eligibility_secondary_cta_label": { + "name": "participation_eligibility_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "participation_eligibility_secondary_cta_url": { + "name": "participation_eligibility_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "participation_eligibility_nudge_text": { + "name": "participation_eligibility_nudge_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle 4 Punkte erfüllt? Dann jetzt kostenlos bewerben.'" + }, + "participation_eligibility_nudge_cta_label": { + "name": "participation_eligibility_nudge_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "participation_eligibility_nudge_cta_url": { + "name": "participation_eligibility_nudge_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_application_ways_eyebrow": { + "name": "participation_application_ways_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "participation_application_ways_heading": { + "name": "participation_application_ways_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'HIER KÖNNEN SIE SICH\nBEWERBEN ODER EIN\nUNTERNEHMEN VORSCHLAGEN.'" + }, + "participation_application_ways_description": { + "name": "participation_application_ways_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Als Unternehmen haben Sie zwei Möglichkeiten: Sie werden von einem unterstützenden Partner oder einer Institution vorgeschlagen, oder Sie ergreifen selbst die Initiative und füllen unsere Anmeldung aus. Die Teilnahme ist in allen Fällen kostenfrei.'" + }, + "participation_application_ways_recommended_label": { + "name": "participation_application_ways_recommended_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Empfohlen'" + }, + "participation_application_ways_fallback_cta_label": { + "name": "participation_application_ways_fallback_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "participation_application_ways_fallback_cta_url": { + "name": "participation_application_ways_fallback_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_dates_banner_heading": { + "name": "participation_dates_banner_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wichtige Termine 2026'" + }, + "participation_dates_banner_description": { + "name": "participation_dates_banner_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Planen Sie Ihre Teilnahme rechtzeitig.'" + }, + "participation_awards_grid_eyebrow": { + "name": "participation_awards_grid_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnungen 2026'" + }, + "participation_awards_grid_heading": { + "name": "participation_awards_grid_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.'" + }, + "participation_awards_grid_description": { + "name": "participation_awards_grid_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.'" + }, + "participation_application_form_image_id": { + "name": "participation_application_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "participation_application_form_image_alt": { + "name": "participation_application_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "participation_application_form_image_caption": { + "name": "participation_application_form_image_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "participation_application_form_eyebrow": { + "name": "participation_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung'" + }, + "participation_application_form_heading": { + "name": "participation_application_form_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEWERBEN ODER\nVORSCHLAGEN.'" + }, + "participation_application_form_description": { + "name": "participation_application_form_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie können sich selbst bewerben oder ein herausragendes Unternehmen vorschlagen. Firmenverbunde können sich ebenfalls bewerben. Die Teilnahme ist vollständig kostenfrei.'" + }, + "participation_application_form_form_eyebrow": { + "name": "participation_application_form_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "participation_application_form_upload_cta_label": { + "name": "participation_application_form_upload_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF hochladen'" + }, + "participation_application_form_upload_cta_url": { + "name": "participation_application_form_upload_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "participation_application_form_upload_prompt": { + "name": "participation_application_form_upload_prompt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie haben Ihre Unterlagen bereits als PDF vorbereitet? Laden Sie sie direkt hoch, statt das Formular auszufüllen.'" + }, + "participation_application_form_upload_footer_cta_label": { + "name": "participation_application_form_upload_footer_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen →'" + }, + "participation_application_form_upload_footer_cta_url": { + "name": "participation_application_form_upload_footer_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "participation_form_step_complete_label": { + "name": "participation_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "participation_form_back_label": { + "name": "participation_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "participation_form_next_label": { + "name": "participation_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "participation_form_submit_label": { + "name": "participation_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "participation_form_yes_label": { + "name": "participation_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "participation_form_no_label": { + "name": "participation_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "participation_form_required_suffix": { + "name": "participation_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "participation_form_validation_choose": { + "name": "participation_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "participation_form_validation_required": { + "name": "participation_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "participation_form_validation_invalid_email": { + "name": "participation_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "participation_form_type_step_eyebrow": { + "name": "participation_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "participation_form_type_step_heading": { + "name": "participation_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "participation_form_type_step_self_title": { + "name": "participation_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "participation_form_type_step_self_desc": { + "name": "participation_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "participation_form_type_step_nomination_title": { + "name": "participation_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "participation_form_type_step_nomination_desc": { + "name": "participation_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "participation_form_eligibility_allowed_employee_values": { + "name": "participation_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "participation_form_eligibility_required_bayern_value": { + "name": "participation_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "participation_form_eligibility_eyebrow": { + "name": "participation_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "participation_form_eligibility_heading": { + "name": "participation_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "participation_form_eligibility_employees_label": { + "name": "participation_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "participation_form_eligibility_bayern_label": { + "name": "participation_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "participation_form_eligibility_owner_label": { + "name": "participation_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "participation_form_eligibility_ineligible_heading": { + "name": "participation_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "participation_form_eligibility_ineligible_body": { + "name": "participation_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "participation_form_eligibility_ineligible_contact_prefix": { + "name": "participation_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "participation_form_eligibility_ineligible_contact_email": { + "name": "participation_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "participation_form_self_contact_eyebrow": { + "name": "participation_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "participation_form_self_contact_heading": { + "name": "participation_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "participation_form_self_contact_company_label": { + "name": "participation_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "participation_form_self_contact_company_placeholder": { + "name": "participation_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "participation_form_self_contact_name_label": { + "name": "participation_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "participation_form_self_contact_name_placeholder": { + "name": "participation_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "participation_form_self_contact_email_label": { + "name": "participation_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "participation_form_self_contact_email_placeholder": { + "name": "participation_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "participation_form_self_contact_phone_label": { + "name": "participation_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "participation_form_self_contact_phone_placeholder": { + "name": "participation_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "participation_form_self_contact_footnote": { + "name": "participation_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "participation_form_self_summary_eyebrow": { + "name": "participation_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "participation_form_self_summary_heading": { + "name": "participation_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "participation_form_self_summary_company_label": { + "name": "participation_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "participation_form_self_summary_employees_label": { + "name": "participation_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "participation_form_self_summary_location_label": { + "name": "participation_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "participation_form_self_summary_location_prefix": { + "name": "participation_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "participation_form_self_summary_contact_label": { + "name": "participation_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "participation_form_nomination_company_eyebrow": { + "name": "participation_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "participation_form_nomination_company_heading": { + "name": "participation_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "participation_form_nomination_company_company_label": { + "name": "participation_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "participation_form_nomination_company_company_placeholder": { + "name": "participation_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "participation_form_nomination_company_industry_label": { + "name": "participation_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "participation_form_nomination_company_industry_placeholder": { + "name": "participation_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "participation_form_nomination_company_location_label": { + "name": "participation_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "participation_form_nomination_company_location_placeholder": { + "name": "participation_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "participation_form_nomination_contact_eyebrow": { + "name": "participation_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "participation_form_nomination_contact_heading": { + "name": "participation_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "participation_form_nomination_contact_name_label": { + "name": "participation_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "participation_form_nomination_contact_name_placeholder": { + "name": "participation_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "participation_form_nomination_contact_email_label": { + "name": "participation_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "participation_form_nomination_contact_email_placeholder": { + "name": "participation_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "participation_form_nomination_contact_relationship_label": { + "name": "participation_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "participation_form_nomination_contact_relationship_placeholder": { + "name": "participation_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "participation_form_nomination_contact_footnote": { + "name": "participation_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "participation_form_nomination_summary_eyebrow": { + "name": "participation_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "participation_form_nomination_summary_heading": { + "name": "participation_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "participation_form_nomination_summary_company_label": { + "name": "participation_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "participation_form_nomination_summary_industry_label": { + "name": "participation_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "participation_form_nomination_summary_location_label": { + "name": "participation_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "participation_form_nomination_summary_nominated_by_label": { + "name": "participation_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "participation_form_nomination_summary_empty_value": { + "name": "participation_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "participation_form_success_self_heading": { + "name": "participation_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "participation_form_success_nomination_heading": { + "name": "participation_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "participation_form_success_self_prefix": { + "name": "participation_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "participation_form_success_self_middle": { + "name": "participation_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "participation_form_success_self_suffix": { + "name": "participation_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "participation_form_success_nomination_prefix": { + "name": "participation_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "participation_form_success_nomination_middle": { + "name": "participation_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "participation_form_success_nomination_suffix": { + "name": "participation_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "about_hero_background_image_id": { + "name": "about_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_hero_image_alt": { + "name": "about_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "about_hero_eyebrow": { + "name": "about_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "about_hero_heading": { + "name": "about_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WERTE, DIE\nBAYERN BEWEGEN'" + }, + "about_hero_highlight": { + "name": "about_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERN BEWEGEN'" + }, + "about_hero_description": { + "name": "about_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Seit 2005 ehrt der BMP herausragende Leistungen im bayerischen Mittelstand. Entdecken Sie die Geschichte, die Vision und die Menschen dahinter.'" + }, + "about_hero_primary_cta_label": { + "name": "about_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "about_hero_primary_cta_url": { + "name": "about_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "about_hero_secondary_cta_label": { + "name": "about_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "about_hero_secondary_cta_url": { + "name": "about_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "about_prize_image_id": { + "name": "about_prize_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_prize_image_alt": { + "name": "about_prize_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Preisverleihung'" + }, + "about_prize_eyebrow": { + "name": "about_prize_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was ist der Preis?'" + }, + "about_prize_heading": { + "name": "about_prize_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DER BAYERISCHE\nMITTELSTANDSPREIS'" + }, + "about_prize_image_label": { + "name": "about_prize_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Preisverleihung · München'" + }, + "about_mittelstand_image_id": { + "name": "about_mittelstand_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_mittelstand_image_alt": { + "name": "about_mittelstand_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstand'" + }, + "about_mittelstand_eyebrow": { + "name": "about_mittelstand_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Relevanz & Zielsetzung'" + }, + "about_mittelstand_heading": { + "name": "about_mittelstand_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEDEUTUNG FÜR\nDEN MITTELSTAND'" + }, + "about_highlights_fallback_image_id": { + "name": "about_highlights_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_highlights_eyebrow": { + "name": "about_highlights_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger-Highlights'" + }, + "about_highlights_heading": { + "name": "about_highlights_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSGEZEICHNETE 2025'" + }, + "about_highlights_cta_label": { + "name": "about_highlights_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "about_highlights_cta_url": { + "name": "about_highlights_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "about_highlights_hover_label": { + "name": "about_highlights_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "about_highlights_fallback_winner_name": { + "name": "about_highlights_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_highlights_fallback_winner_category": { + "name": "about_highlights_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_highlights_fallback_winner_award_type": { + "name": "about_highlights_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "about_highlights_year": { + "name": "about_highlights_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 2025 + }, + "about_testimonials_eyebrow": { + "name": "about_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "about_testimonials_heading": { + "name": "about_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "about_testimonials_desktop_heading": { + "name": "about_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "about_testimonials_year_prefix": { + "name": "about_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_testimonials_previous_label": { + "name": "about_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "about_testimonials_next_label": { + "name": "about_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "about_testimonials_slide_label_prefix": { + "name": "about_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "about_history_eyebrow": { + "name": "about_history_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geschichte & Meilensteine'" + }, + "about_history_heading": { + "name": "about_history_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20 JAHRE\nMITTELSTANDSEXZELLENZ'" + }, + "about_history_highlight": { + "name": "about_history_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTANDS'" + }, + "about_history_watermark": { + "name": "about_history_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20'" + }, + "about_goals_eyebrow": { + "name": "about_goals_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zielsetzung'" + }, + "about_goals_heading": { + "name": "about_goals_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WOFÜR WIR\nSTEHEN'" + }, + "about_values_eyebrow": { + "name": "about_values_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorteile & Werte'" + }, + "about_values_heading": { + "name": "about_values_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM DER\nBMP ZÄHLT'" + }, + "about_values_description": { + "name": "about_values_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Drei Dimensionen, die den Unterschied machen: für Ihr Unternehmen, Ihre Mitarbeitenden und Ihren Marktauftritt.'" + }, + "about_cta_eyebrow": { + "name": "about_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Starten Sie Ihre Reise'" + }, + "about_cta_heading": { + "name": "about_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN AUCH SIE GESCHICHTE'" + }, + "about_cta_description": { + "name": "about_cta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands. Die Teilnahmegebühr beträgt 0 EUR und die Teilnahme lohnt sich in jeder Phase.'" + }, + "about_cta_primary_cta_label": { + "name": "about_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "about_cta_primary_cta_url": { + "name": "about_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "about_cta_secondary_prefix": { + "name": "about_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "about_cta_secondary_cta_label": { + "name": "about_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "about_cta_secondary_cta_url": { + "name": "about_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "impressum_hero_back_label": { + "name": "impressum_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "impressum_hero_eyebrow": { + "name": "impressum_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "impressum_hero_heading": { + "name": "impressum_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Impressum'" + }, + "impressum_hero_description_html": { + "name": "impressum_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Angaben gemäß §5 TMG · Zur Datenschutzerklärung →'" + }, + "impressum_navigation_toc_title": { + "name": "impressum_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "impressum_navigation_side_link_label": { + "name": "impressum_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutzerklärung →'" + }, + "impressum_navigation_side_link_url": { + "name": "impressum_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/datenschutz'" + }, + "datenschutz_hero_back_label": { + "name": "datenschutz_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "datenschutz_hero_eyebrow": { + "name": "datenschutz_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "datenschutz_hero_heading": { + "name": "datenschutz_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutz­erklärung'" + }, + "datenschutz_hero_description_html": { + "name": "datenschutz_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zuletzt aktualisiert: April 2026 · Zum Impressum →'" + }, + "datenschutz_navigation_toc_title": { + "name": "datenschutz_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "datenschutz_navigation_side_link_label": { + "name": "datenschutz_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Impressum →'" + }, + "datenschutz_navigation_side_link_url": { + "name": "datenschutz_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/impressum'" + }, + "preistraeger_index_hero_image_id": { + "name": "preistraeger_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_index_hero_image_url": { + "name": "preistraeger_index_hero_image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=2000'" + }, + "preistraeger_index_hero_image_alt": { + "name": "preistraeger_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung'" + }, + "preistraeger_index_breadcrumb_label": { + "name": "preistraeger_index_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "preistraeger_index_count_label": { + "name": "preistraeger_index_count_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "preistraeger_index_empty_message": { + "name": "preistraeger_index_empty_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Preisträger für diese Auswahl.'" + }, + "preistraeger_index_card_fallback_image_id": { + "name": "preistraeger_index_card_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_index_card_hover_label": { + "name": "preistraeger_index_card_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr erfahren'" + }, + "preistraeger_index_card_fallback_winner_name": { + "name": "preistraeger_index_card_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "preistraeger_index_card_fallback_winner_category": { + "name": "preistraeger_index_card_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "preistraeger_index_card_fallback_winner_award_type": { + "name": "preistraeger_index_card_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "preistraeger_index_card_fallback_winner_location": { + "name": "preistraeger_index_card_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "preistraeger_index_card_fallback_winner_industry": { + "name": "preistraeger_index_card_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "preistraeger_index_cta_text": { + "name": "preistraeger_index_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie der nächste Preisträger.'" + }, + "preistraeger_index_cta_primary_cta_label": { + "name": "preistraeger_index_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "preistraeger_index_cta_primary_cta_url": { + "name": "preistraeger_index_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "preistraeger_index_cta_secondary_prefix": { + "name": "preistraeger_index_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Arbeit unterstützen:'" + }, + "preistraeger_index_cta_secondary_cta_label": { + "name": "preistraeger_index_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "preistraeger_index_cta_secondary_cta_url": { + "name": "preistraeger_index_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "press_index_hero_image_id": { + "name": "press_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_hero_image_alt": { + "name": "press_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse BMP'" + }, + "press_index_hero_eyebrow": { + "name": "press_index_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse & Newsroom'" + }, + "press_index_hero_heading": { + "name": "press_index_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS &\nBERICHTERSTATTUNG.'" + }, + "press_index_hero_description": { + "name": "press_index_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Termine, Pressemitteilungen und Medienmaterial rund um den Bayerischen Mittelstandspreis.'" + }, + "press_index_events_eyebrow": { + "name": "press_index_events_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termine 2026'" + }, + "press_index_events_heading": { + "name": "press_index_events_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS RUND UM DEN PREIS.'" + }, + "press_index_events_description": { + "name": "press_index_events_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Jurysitzung bis zur festlichen Gala – alle Veranstaltungen auf einen Blick.'" + }, + "press_index_events_detail_label": { + "name": "press_index_events_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "press_index_events_default_status_label": { + "name": "press_index_events_default_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geplant'" + }, + "press_index_events_open_status_label": { + "name": "press_index_events_open_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anmeldung offen'" + }, + "press_index_events_missing_title_label": { + "name": "press_index_events_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "press_index_events_missing_date_label": { + "name": "press_index_events_missing_date_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "press_index_events_missing_location_label": { + "name": "press_index_events_missing_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "press_index_events_missing_category_label": { + "name": "press_index_events_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "press_index_events_collection_fallback_image_id": { + "name": "press_index_events_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_news_eyebrow": { + "name": "press_index_news_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "press_index_news_heading": { + "name": "press_index_news_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'NACHRICHTEN & EINBLICKE.'" + }, + "press_index_news_description": { + "name": "press_index_news_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berichte, Hintergründe und Einblicke rund um den bayerischen Mittelstand und den BMP.'" + }, + "press_index_news_read_more_label": { + "name": "press_index_news_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "press_index_news_missing_title_label": { + "name": "press_index_news_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "press_index_news_missing_category_label": { + "name": "press_index_news_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "press_index_news_collection_fallback_image_id": { + "name": "press_index_news_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_downloads_eyebrow": { + "name": "press_index_downloads_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt & Material'" + }, + "press_index_downloads_heading": { + "name": "press_index_downloads_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PRESSE-MATERIAL & KONTAKT.'" + }, + "press_index_downloads_description": { + "name": "press_index_downloads_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie unser offizielles Material herunter oder kontaktieren Sie direkt unser Presseteam für individuelle Anfragen.'" + }, + "press_index_downloads_kit_label": { + "name": "press_index_downloads_kit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Download Presse-Kit'" + }, + "press_index_downloads_kit_meta": { + "name": "press_index_downloads_kit_meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip – 1,5 MB'" + }, + "press_index_downloads_kit_file_id": { + "name": "press_index_downloads_kit_file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_downloads_kit_url": { + "name": "press_index_downloads_kit_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/Print_BMP.zip'" + }, + "press_index_downloads_kit_download_name": { + "name": "press_index_downloads_kit_download_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip'" + }, + "press_index_downloads_contact_eyebrow": { + "name": "press_index_downloads_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt'" + }, + "press_index_downloads_contact_name": { + "name": "press_index_downloads_contact_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Tanja Meier'" + }, + "press_index_downloads_contact_lines": { + "name": "press_index_downloads_contact_lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'presse@bmp-bayern.de\n+49 89 123 456 99'" + }, + "press_index_accreditation_eyebrow": { + "name": "press_index_accreditation_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung'" + }, + "press_index_accreditation_heading": { + "name": "press_index_accreditation_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AKKREDITIERUNG ANFRAGEN.'" + }, + "press_index_accreditation_description": { + "name": "press_index_accreditation_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Melden Sie sich für unsere Presse-Verteiler an oder fordern Sie eine Akkreditierung für die Gala-Verleihung an.'" + }, + "press_index_accreditation_medium_label": { + "name": "press_index_accreditation_medium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Medium / Redaktion *'" + }, + "press_index_accreditation_name_label": { + "name": "press_index_accreditation_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name *'" + }, + "press_index_accreditation_email_label": { + "name": "press_index_accreditation_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail-Adresse *'" + }, + "press_index_accreditation_submit_label": { + "name": "press_index_accreditation_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung anfragen'" + }, + "press_index_accreditation_success_heading": { + "name": "press_index_accreditation_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "press_index_accreditation_success_message": { + "name": "press_index_accreditation_success_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank für Ihre Akkreditierungsanfrage. Unser Presseteam meldet sich zeitnah bei Ihnen.'" + }, + "form_upload_hero_eyebrow": { + "name": "form_upload_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026 – Bewerbungsportal'" + }, + "form_upload_hero_heading": { + "name": "form_upload_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERLAGEN\nEINREICHEN'" + }, + "form_upload_hero_description": { + "name": "form_upload_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie Ihre Bewerbungsunterlagen sicher hoch. Alle Einreichungen werden vertraulich behandelt und direkt an die Jury weitergeleitet.'" + }, + "form_upload_breadcrumb_label": { + "name": "form_upload_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen'" + }, + "form_upload_requirements_eyebrow": { + "name": "form_upload_requirements_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was wird benötigt?'" + }, + "form_upload_requirements_heading": { + "name": "form_upload_requirements_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ANFORDERUNGEN & FRISTEN'" + }, + "form_upload_upload_eyebrow": { + "name": "form_upload_upload_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung'" + }, + "form_upload_upload_heading": { + "name": "form_upload_upload_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DATEIEN HOCHLADEN'" + }, + "form_upload_upload_drop_title": { + "name": "form_upload_upload_drop_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dateien hierher ziehen'" + }, + "form_upload_upload_drop_description": { + "name": "form_upload_upload_drop_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oder klicken zum Auswählen'" + }, + "form_upload_upload_accepted_formats": { + "name": "form_upload_upload_accepted_formats", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF\nDOCX\nXLSX\nPPT'" + }, + "form_upload_upload_file_remove_label": { + "name": "form_upload_upload_file_remove_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei entfernen'" + }, + "form_upload_upload_note_title": { + "name": "form_upload_upload_note_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis'" + }, + "form_upload_upload_note": { + "name": "form_upload_upload_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stellen Sie sicher, dass alle Pflichtdokumente vollständig sind, bevor Sie einreichen. Unvollständige Bewerbungen können nicht berücksichtigt werden.'" + }, + "form_upload_upload_selected_submit_prefix": { + "name": "form_upload_upload_selected_submit_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei'" + }, + "form_upload_upload_selected_submit_plural_suffix": { + "name": "form_upload_upload_selected_submit_plural_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'en'" + }, + "form_upload_upload_selected_submit_action": { + "name": "form_upload_upload_selected_submit_action", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'einreichen'" + }, + "form_upload_upload_empty_submit_label": { + "name": "form_upload_upload_empty_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Dateien ausgewählt'" + }, + "form_upload_upload_privacy_note": { + "name": "form_upload_upload_privacy_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mit der Einreichung stimmen Sie der Verarbeitung Ihrer Daten gemäß unserer Datenschutzerklärung zu.'" + }, + "form_upload_success_heading": { + "name": "form_upload_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung erfolgreich'" + }, + "form_upload_success_description": { + "name": "form_upload_success_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Unterlagen wurden übermittelt. Sie erhalten eine Bestätigung per E-Mail. Die Jury meldet sich bis August 2026.'" + }, + "form_upload_success_link_label": { + "name": "form_upload_success_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "form_upload_success_link_url": { + "name": "form_upload_success_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "form_upload_cta_eyebrow": { + "name": "form_upload_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Noch Fragen zur Einreichung?'" + }, + "form_upload_cta_contact_label": { + "name": "form_upload_cta_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "form_upload_cta_contact_url": { + "name": "form_upload_cta_contact_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "form_upload_cta_button_label": { + "name": "form_upload_cta_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "form_upload_cta_button_url": { + "name": "form_upload_cta_button_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "netzwerk_hero_image_id": { + "name": "netzwerk_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "netzwerk_hero_image_alt": { + "name": "netzwerk_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Netzwerk Preisverleihung'" + }, + "netzwerk_hero_eyebrow": { + "name": "netzwerk_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury & Partner'" + }, + "netzwerk_hero_heading": { + "name": "netzwerk_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS NETZWERK\nHINTER DEM AWARD.'" + }, + "netzwerk_hero_highlight": { + "name": "netzwerk_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AWARD.'" + }, + "netzwerk_hero_description": { + "name": "netzwerk_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis wird getragen von einem starken Netzwerk aus Schirmherrschaft, unabhängiger Fach-Jury und langjährigen Partnern aus Wirtschaft und Gesellschaft.'" + }, + "netzwerk_patronage_eyebrow": { + "name": "netzwerk_patronage_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Schirmherrschaft'" + }, + "netzwerk_patronage_heading": { + "name": "netzwerk_patronage_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin und Schirmherr'" + }, + "netzwerk_patronage_description": { + "name": "netzwerk_patronage_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'des Bayerischen Mittelstandspreises'" + }, + "netzwerk_patronage_greeting_eyebrow": { + "name": "netzwerk_patronage_greeting_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grußwort'" + }, + "netzwerk_patronage_greeting_role": { + "name": "netzwerk_patronage_greeting_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin'" + }, + "netzwerk_patronage_greeting_name": { + "name": "netzwerk_patronage_greeting_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ilse Aigner MdL'" + }, + "netzwerk_patronage_greeting_title_line1": { + "name": "netzwerk_patronage_greeting_title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Präsidentin des Bayerischen Landtags'" + }, + "netzwerk_patronage_greeting_title_line2": { + "name": "netzwerk_patronage_greeting_title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerische Staatsministerin für Wirtschaft a.D.'" + }, + "netzwerk_patronage_greeting_quote": { + "name": "netzwerk_patronage_greeting_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Der Bayerische Mittelstandspreis steht für das, was Bayern stark macht: Unternehmergeist, Verantwortung und Qualität. Mit großer Freude übernehme ich erneut die Schirmherrschaft für diesen bedeutenden Preis.“'" + }, + "netzwerk_patronage_greeting_attribution": { + "name": "netzwerk_patronage_greeting_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'– Ilse Aigner MdL, Präsidentin des Bayerischen Landtags'" + }, + "netzwerk_jury_intro_eyebrow": { + "name": "netzwerk_jury_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wer entscheidet?'" + }, + "netzwerk_jury_intro_heading": { + "name": "netzwerk_jury_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNABHÄNGIGE EXPERTISE FÜR DEN MITTELSTAND.'" + }, + "netzwerk_jury_intro_description": { + "name": "netzwerk_jury_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises besteht ausschließlich aus ehrenamtlich tätigen Expertinnen und Experten. Kein Mitglied steht in wirtschaftlicher Verbindung zu einem Bewerber – Transparenz und Unparteilichkeit sind die Grundpfeiler unseres Verfahrens.'" + }, + "netzwerk_jury_eyebrow": { + "name": "netzwerk_jury_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Gremium'" + }, + "netzwerk_jury_heading": { + "name": "netzwerk_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNSERE JURY 2026'" + }, + "netzwerk_jury_description": { + "name": "netzwerk_jury_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unabhängige Expertinnen und Experten aus Wirtschaft, Wissenschaft und Verbänden, für einen vollständig unabhängigen Bewertungsprozess.'" + }, + "netzwerk_jury_chair_badge": { + "name": "netzwerk_jury_chair_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury-Vorsitz'" + }, + "netzwerk_jury_note": { + "name": "netzwerk_jury_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis: Einzelne Persönlichkeiten engagieren sich sowohl in der Jury als auch als Partner des BMP – beide Rollen werden auf dieser Seite getrennt ausgewiesen.'" + }, + "netzwerk_expertise_eyebrow": { + "name": "netzwerk_expertise_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hintergrund & Expertise'" + }, + "netzwerk_expertise_heading": { + "name": "netzwerk_expertise_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIE BEWERTET DIE JURY?'" + }, + "netzwerk_expertise_quote": { + "name": "netzwerk_expertise_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des BMP ist vollständig von wirtschaftlichen Interessen unabhängig. Jede Entscheidung wird transparent nachvollzogen – das ist unser Versprechen an die Unternehmen Bayerns.'" + }, + "netzwerk_expertise_quote_attribution": { + "name": "netzwerk_expertise_quote_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Prof. Dr. Klaus Bergmann, Juryvorsitzender'" + }, + "netzwerk_partners_eyebrow": { + "name": "netzwerk_partners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netzwerkqualität'" + }, + "netzwerk_partners_heading": { + "name": "netzwerk_partners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PARTNER & SPONSOREN'" + }, + "netzwerk_partners_description": { + "name": "netzwerk_partners_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Partner in drei Kategorien: Hauptsponsoren, Medienpartner und weitere Sponsoren. Klicken für Details.'" + }, + "netzwerk_partners_detail_label": { + "name": "netzwerk_partners_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "netzwerk_partners_premium_label": { + "name": "netzwerk_partners_premium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Premium'" + }, + "netzwerk_partners_default_logo_color": { + "name": "netzwerk_partners_default_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#111D55'" + }, + "netzwerk_partners_modal_industry_label": { + "name": "netzwerk_partners_modal_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "netzwerk_partners_modal_location_label": { + "name": "netzwerk_partners_modal_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "netzwerk_partners_modal_web_label": { + "name": "netzwerk_partners_modal_web_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Web'" + }, + "netzwerk_partners_modal_about_label": { + "name": "netzwerk_partners_modal_about_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "netzwerk_partners_modal_website_label": { + "name": "netzwerk_partners_modal_website_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen'" + }, + "netzwerk_partners_modal_close_label": { + "name": "netzwerk_partners_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "netzwerk_partners_modal_footer_title": { + "name": "netzwerk_partners_modal_footer_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis 2026'" + }, + "netzwerk_partners_modal_footer_role_prefix": { + "name": "netzwerk_partners_modal_footer_role_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Offizieller'" + }, + "netzwerk_sponsoring_eyebrow": { + "name": "netzwerk_sponsoring_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wachstum durch Partnerschaft'" + }, + "netzwerk_sponsoring_heading": { + "name": "netzwerk_sponsoring_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIR FREUEN UNS ÜBER NEUE SPONSOREN.'" + }, + "netzwerk_sponsoring_description": { + "name": "netzwerk_sponsoring_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Positionieren Sie Ihre Marke im exklusivsten Netzwerk des bayerischen Mittelstands – mit maßgeschneiderten Sponsoring-Paketen.'" + }, + "netzwerk_sponsoring_image_id": { + "name": "netzwerk_sponsoring_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "netzwerk_sponsoring_image_alt": { + "name": "netzwerk_sponsoring_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "netzwerk_sponsoring_image_label": { + "name": "netzwerk_sponsoring_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "netzwerk_sponsoring_form_eyebrow": { + "name": "netzwerk_sponsoring_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sponsoring 2026'" + }, + "netzwerk_sponsoring_footnote_prefix": { + "name": "netzwerk_sponsoring_footnote_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "netzwerk_sponsoring_footnote_label": { + "name": "netzwerk_sponsoring_footnote_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "netzwerk_sponsoring_footnote_url": { + "name": "netzwerk_sponsoring_footnote_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "netzwerk_sponsoring_form_step1_eyebrow": { + "name": "netzwerk_sponsoring_form_step1_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1 – Paket wählen'" + }, + "netzwerk_sponsoring_form_step1_heading": { + "name": "netzwerk_sponsoring_form_step1_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Interesse an'" + }, + "netzwerk_sponsoring_form_step2_eyebrow": { + "name": "netzwerk_sponsoring_form_step2_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 2 – Unternehmen'" + }, + "netzwerk_sponsoring_form_step2_heading": { + "name": "netzwerk_sponsoring_form_step2_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Unternehmen'" + }, + "netzwerk_sponsoring_form_company_label": { + "name": "netzwerk_sponsoring_form_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen *'" + }, + "netzwerk_sponsoring_form_company_placeholder": { + "name": "netzwerk_sponsoring_form_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "netzwerk_sponsoring_form_industry_label": { + "name": "netzwerk_sponsoring_form_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "netzwerk_sponsoring_form_industry_placeholder": { + "name": "netzwerk_sponsoring_form_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Finanzdienstleistungen'" + }, + "netzwerk_sponsoring_form_step3_eyebrow": { + "name": "netzwerk_sponsoring_form_step3_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 3 – Kontakt'" + }, + "netzwerk_sponsoring_form_step3_heading": { + "name": "netzwerk_sponsoring_form_step3_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner'" + }, + "netzwerk_sponsoring_form_contact_label": { + "name": "netzwerk_sponsoring_form_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner *'" + }, + "netzwerk_sponsoring_form_contact_placeholder": { + "name": "netzwerk_sponsoring_form_contact_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "netzwerk_sponsoring_form_email_label": { + "name": "netzwerk_sponsoring_form_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail *'" + }, + "netzwerk_sponsoring_form_email_placeholder": { + "name": "netzwerk_sponsoring_form_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "netzwerk_sponsoring_form_back_label": { + "name": "netzwerk_sponsoring_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "netzwerk_sponsoring_form_next_label": { + "name": "netzwerk_sponsoring_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "netzwerk_sponsoring_form_submit_label": { + "name": "netzwerk_sponsoring_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Exposé anfordern'" + }, + "netzwerk_sponsoring_form_required_package_error": { + "name": "netzwerk_sponsoring_form_required_package_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen Sie ein Paket.'" + }, + "netzwerk_sponsoring_form_required_field_error": { + "name": "netzwerk_sponsoring_form_required_field_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "netzwerk_sponsoring_form_invalid_email_error": { + "name": "netzwerk_sponsoring_form_invalid_email_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "netzwerk_sponsoring_form_done_label": { + "name": "netzwerk_sponsoring_form_done_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "netzwerk_sponsoring_form_success_heading": { + "name": "netzwerk_sponsoring_form_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "netzwerk_sponsoring_form_success_message_prefix": { + "name": "netzwerk_sponsoring_form_success_message_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank,'" + }, + "netzwerk_sponsoring_form_success_message_suffix": { + "name": "netzwerk_sponsoring_form_success_message_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen unser Sponsoring-Exposé innerhalb von 48 Stunden zu.'" + }, + "netzwerk_sponsoring_form_footer_text": { + "name": "netzwerk_sponsoring_form_footer_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns innerhalb von 48 Stunden.'" + }, + "mitglied_werden_header_brand_label": { + "name": "mitglied_werden_header_brand_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026'" + }, + "mitglied_werden_header_back_label": { + "name": "mitglied_werden_header_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "mitglied_werden_header_back_url": { + "name": "mitglied_werden_header_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/'" + }, + "mitglied_werden_hero_image_id": { + "name": "mitglied_werden_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mitglied_werden_hero_image_alt": { + "name": "mitglied_werden_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitgliedschaft'" + }, + "mitglied_werden_hero_eyebrow": { + "name": "mitglied_werden_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitgliedschaft'" + }, + "mitglied_werden_hero_heading": { + "name": "mitglied_werden_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DEIN WEG ZU UNS.'" + }, + "mitglied_werden_hero_description": { + "name": "mitglied_werden_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis lebt vom Engagement seiner Mitglieder.\nEine Mitgliedschaft ist Unterstützung, damit der Preis weiterhin unabhängig\nund kostenlos umgesetzt werden kann.'" + }, + "mitglied_werden_benefits_eyebrow": { + "name": "mitglied_werden_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Deine Vorteile'" + }, + "mitglied_werden_benefits_heading": { + "name": "mitglied_werden_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS DU GEWINNST.'" + }, + "mitglied_werden_about_eyebrow": { + "name": "mitglied_werden_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Verein'" + }, + "mitglied_werden_about_heading": { + "name": "mitglied_werden_about_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER WIR SIND.'" + }, + "mitglied_werden_about_descriptor": { + "name": "mitglied_werden_about_descriptor", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis e.V., eingetragener gemeinnütziger Verein'" + }, + "mitglied_werden_pricing_eyebrow": { + "name": "mitglied_werden_pricing_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitgliedsbeitrag'" + }, + "mitglied_werden_pricing_heading": { + "name": "mitglied_werden_pricing_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR BEITRAG.'" + }, + "mitglied_werden_pricing_employee_label": { + "name": "mitglied_werden_pricing_employee_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anzahl Mitarbeiter wählen'" + }, + "mitglied_werden_pricing_select_placeholder": { + "name": "mitglied_werden_pricing_select_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen…'" + }, + "mitglied_werden_pricing_option_suffix": { + "name": "mitglied_werden_pricing_option_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "mitglied_werden_pricing_result_eyebrow": { + "name": "mitglied_werden_pricing_result_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Beitragsübersicht'" + }, + "mitglied_werden_pricing_annual_net_label": { + "name": "mitglied_werden_pricing_annual_net_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (netto)'" + }, + "mitglied_werden_pricing_annual_gross_label": { + "name": "mitglied_werden_pricing_annual_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (19 % MwSt.)'" + }, + "mitglied_werden_pricing_annual_gross_short_label": { + "name": "mitglied_werden_pricing_annual_gross_short_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (brutto)'" + }, + "mitglied_werden_pricing_admission_gross_label": { + "name": "mitglied_werden_pricing_admission_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aufnahmegebühr (brutto)'" + }, + "mitglied_werden_pricing_total_year_one_label": { + "name": "mitglied_werden_pricing_total_year_one_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gesamt Jahr 1 (anteilig)'" + }, + "mitglied_werden_pricing_footnote": { + "name": "mitglied_werden_pricing_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'* Anteilig ab nächstem Monatsersten bis 31.12. des laufenden Jahres. Ab dem Folgejahr gilt der volle Jahresbeitrag.'" + }, + "mitglied_werden_pricing_cta_label": { + "name": "mitglied_werden_pricing_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden →'" + }, + "mitglied_werden_pricing_cta_href": { + "name": "mitglied_werden_pricing_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "mitglied_werden_pricing_table_toggle_label": { + "name": "mitglied_werden_pricing_table_toggle_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vollständige Beitragsstaffel'" + }, + "mitglied_werden_pricing_table_employee_header": { + "name": "mitglied_werden_pricing_table_employee_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "mitglied_werden_pricing_table_net_header": { + "name": "mitglied_werden_pricing_table_net_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netto / Jahr'" + }, + "mitglied_werden_pricing_table_gross_header": { + "name": "mitglied_werden_pricing_table_gross_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Brutto / Jahr'" + }, + "mitglied_werden_pricing_table_note_prefix": { + "name": "mitglied_werden_pricing_table_note_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zzgl. einmalige Aufnahmegebühr'" + }, + "mitglied_werden_pricing_table_note_suffix": { + "name": "mitglied_werden_pricing_table_note_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'(brutto) im ersten Jahr. Alle Angaben inkl. 19 % MwSt.'" + }, + "mitglied_werden_pricing_vat_rate": { + "name": "mitglied_werden_pricing_vat_rate", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0.19 + }, + "mitglied_werden_pricing_admission_fee_net": { + "name": "mitglied_werden_pricing_admission_fee_net", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 500 + }, + "mitglied_werden_form_intro_eyebrow": { + "name": "mitglied_werden_form_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt beitreten'" + }, + "mitglied_werden_form_intro_heading": { + "name": "mitglied_werden_form_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DU BIST DABEI.'" + }, + "mitglied_werden_form_intro_description": { + "name": "mitglied_werden_form_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fülle das Formular aus und wir melden uns innerhalb von 48 Stunden bei dir.\nDie Mitgliedschaft beginnt mit Bestätigung durch den Vorstand.'" + }, + "mitglied_werden_form_intro_image_id": { + "name": "mitglied_werden_form_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mitglied_werden_form_intro_image_alt": { + "name": "mitglied_werden_form_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder'" + }, + "mitglied_werden_form_intro_image_label": { + "name": "mitglied_werden_form_intro_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder 2025'" + }, + "mitglied_werden_wizard": { + "name": "mitglied_werden_wizard", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"requiredSuffix\":\"*\",\"optionalSuffix\":\"(optional)\",\"stepCounterTemplate\":\"Schritt {step} von {total}\",\"reviewFallback\":\"–\",\"nav\":{\"backLabel\":\"← Zurück\",\"nextLabel\":\"Weiter →\",\"submitLabel\":\"Mitgliedschaftsantrag verbindlich einreichen\"},\"steps\":[{\"id\":1,\"label\":\"Unternehmen\"},{\"id\":2,\"label\":\"Kontakt\"},{\"id\":3,\"label\":\"Details\"},{\"id\":4,\"label\":\"Zahlung\"},{\"id\":5,\"label\":\"Abschluss\"}],\"validation\":{\"required\":\"Pflichtfeld\",\"select\":\"Bitte wählen\",\"postalCode\":\"5-stellige PLZ erforderlich\",\"email\":\"Gültige E-Mail erforderlich\",\"iban\":\"Ungültige IBAN (DE, 22 Zeichen)\",\"sepa\":\"Bitte SEPA-Mandat bestätigen\"},\"tiers\":[{\"max\":10,\"label\":\"bis 10\",\"annual\":480},{\"max\":20,\"label\":\"bis 20\",\"annual\":600},{\"max\":50,\"label\":\"bis 50\",\"annual\":900},{\"max\":100,\"label\":\"bis 100\",\"annual\":1200},{\"max\":250,\"label\":\"bis 250\",\"annual\":2400},{\"max\":1000,\"label\":\"bis 1.000\",\"annual\":3600}],\"vatRate\":0.19,\"admissionFeeNet\":500,\"pricingSummary\":{\"eyebrow\":\"Beitragsübersicht\",\"annualNetLabel\":\"Jahresbeitrag (netto)\",\"annualGrossLabel\":\"Jahresbeitrag (brutto)\",\"admissionGrossLabel\":\"Aufnahmegebühr (brutto)\",\"totalYearOneLabel\":\"Gesamt Jahr 1 (anteilig)\"},\"fields\":{\"company\":{\"title\":\"Ihr Unternehmen\",\"subtitle\":\"Angaben zum antragstellenden Unternehmen\",\"legalForms\":[\"GmbH\",\"GmbH & Co. KG\",\"AG\",\"UG\",\"KG\",\"OHG\",\"GbR\",\"Einzelunternehmen\",\"e.K.\",\"Sonstige\"],\"companyNameLabel\":\"Firmenname\",\"companyNamePlaceholder\":\"Muster GmbH\",\"legalFormLabel\":\"Rechtsform\",\"employeesLabel\":\"Anzahl Mitarbeiter\",\"streetLabel\":\"Straße & Hausnummer\",\"streetPlaceholder\":\"Musterstraße 42\",\"postalCodeLabel\":\"PLZ\",\"postalCodePlaceholder\":\"12345\",\"cityLabel\":\"Ort\",\"cityPlaceholder\":\"Berlin\",\"websiteLabel\":\"Website\",\"websitePlaceholder\":\"https://www.ihrewebsite.de\"},\"contact\":{\"title\":\"Kontaktperson\",\"subtitle\":\"Ansprechpartner für die Mitgliedschaft\",\"salutations\":[\"Herr\",\"Frau\",\"Divers\"],\"salutationLabel\":\"Anrede\",\"firstNameLabel\":\"Vorname\",\"firstNamePlaceholder\":\"Max\",\"lastNameLabel\":\"Nachname\",\"lastNamePlaceholder\":\"Mustermann\",\"positionLabel\":\"Position / Funktion\",\"positionPlaceholder\":\"z. B. Geschäftsführer\",\"emailLabel\":\"E-Mail-Adresse\",\"emailPlaceholder\":\"max@muster.de\",\"phoneLabel\":\"Telefon\",\"phonePlaceholder\":\"+49 30 123456\"},\"details\":{\"title\":\"Mitgliedschaft & Details\",\"subtitle\":\"Beitragsübersicht und Eintrittsdatum\",\"entryDateLabel\":\"Gewünschtes Eintrittsdatum\",\"referralLabel\":\"Wie wurden Sie aufmerksam?\",\"referralOptions\":[\"Empfehlung\",\"Veranstaltung\",\"Google\",\"Social Media\",\"Presse\",\"Sonstiges\"],\"motivationLabel\":\"Ihre Motivation (optional)\",\"motivationPlaceholder\":\"Was erhoffen Sie sich von der Mitgliedschaft beim BMP e.V.?\",\"motivationMaxLength\":500},\"payment\":{\"title\":\"SEPA-Lastschriftmandat\",\"subtitle\":\"Bankverbindung für den Beitragseinzug\",\"mandateText\":\"Ich ermächtige den BMP e.V., Zahlungen von meinem Konto mittels Lastschrift einzuziehen. Zugleich weise ich mein Kreditinstitut an, die vom BMP e.V. auf mein Konto gezogenen Lastschriften einzulösen. Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des belasteten Betrages verlangen. Es gelten dabei die mit meinem Kreditinstitut vereinbarten Bedingungen. Die Mandatsreferenz wird separat mitgeteilt. Gläubiger-Identifikationsnummer: DE98ZZZ09999999999.\",\"accountHolderLabel\":\"Kontoinhaber\",\"accountHolderPlaceholder\":\"Max Mustermann\",\"ibanLabel\":\"IBAN\",\"ibanPlaceholder\":\"DE00 0000 0000 0000 0000 00\",\"ibanValidLabel\":\"✓ OK\",\"ibanPendingLabel\":\"…\",\"bicLabel\":\"BIC\",\"bicPlaceholder\":\"BELADEBEXXX\",\"bicAutoPlaceholder\":\"Wird ausgefüllt\",\"bankLabel\":\"Bank / Kreditinstitut\",\"bankPlaceholder\":\"Berliner Sparkasse\",\"sepaCheckboxLabel\":\"Ich bestätige das SEPA-Lastschriftmandat und ermächtige den BMP e.V. zum Einzug.\"},\"summary\":{\"title\":\"Zusammenfassung & Abschluss\",\"subtitle\":\"Bitte prüfen Sie Ihre Angaben\",\"companyAccordion\":\"Unternehmen\",\"contactAccordion\":\"Kontaktperson\",\"paymentAccordion\":\"Zahlung\",\"requiredTitle\":\"Pflichtbestätigungen\",\"optionalTitle\":\"Optional\",\"labels\":{\"companyName\":\"Firmenname\",\"legalForm\":\"Rechtsform\",\"address\":\"Adresse\",\"employees\":\"Mitarbeiter\",\"website\":\"Website\",\"name\":\"Name\",\"position\":\"Position\",\"email\":\"E-Mail\",\"phone\":\"Telefon\",\"accountHolder\":\"Kontoinhaber\",\"iban\":\"IBAN\",\"bic\":\"BIC\",\"bank\":\"Bank\",\"entryDate\":\"Eintrittsdatum\",\"annualContribution\":\"Jahresbeitrag\"},\"consents\":{\"satzung\":\"Ich habe die Satzung des BMP e.V. gelesen und erkenne sie an.\",\"datenschutz\":\"Ich habe die Datenschutzerklärung gelesen und stimme zu.\",\"widerruf\":\"Ich habe die Kündigungsfrist zur Kenntnis genommen (1 Jahr zum Jahresende).\",\"newsletter\":\"Ich möchte elektronische Informationen, Einladungen und den Newsletter erhalten.\",\"websitePub\":\"Meinen Firmennamen auf der Website des BMP e.V. als Mitglied veröffentlichen.\"}}},\"success\":{\"heading\":\"Ihr Antrag ist eingegangen.\",\"message\":\"Wir melden uns innerhalb von 5 Werktagen bei Ihnen.\",\"nextStepsTitle\":\"Ihre nächsten Schritte\",\"steps\":[{\"num\":\"1\",\"title\":\"Bestätigung per E-Mail\",\"desc\":\"Sie erhalten in Kürze eine Eingangsbestätigung.\"},{\"num\":\"2\",\"title\":\"Prüfung durch den Vorstand\",\"desc\":\"Ihr Antrag wird in der nächsten Sitzung behandelt.\"},{\"num\":\"3\",\"title\":\"Willkommen im BMP e.V.\",\"desc\":\"Nach Bestätigung erhalten Sie Ihre Mitgliedsdaten.\"}]}}'" + }, + "mitglied_werden_testimonials_eyebrow": { + "name": "mitglied_werden_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Mitglieder'" + }, + "mitglied_werden_testimonials_heading": { + "name": "mitglied_werden_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS MITGLIEDER SAGEN.'" + }, + "mitglied_werden_faq_eyebrow": { + "name": "mitglied_werden_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige Fragen'" + }, + "mitglied_werden_faq_heading": { + "name": "mitglied_werden_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'FAQ.'" + }, + "mitglied_werden_bottom_cta_eyebrow": { + "name": "mitglied_werden_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werde Teil des BMP'" + }, + "mitglied_werden_bottom_cta_heading": { + "name": "mitglied_werden_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERSTÜTZE. NETZWERKE. WIRKE.'" + }, + "mitglied_werden_bottom_cta_cta_label": { + "name": "mitglied_werden_bottom_cta_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden'" + }, + "mitglied_werden_bottom_cta_cta_href": { + "name": "mitglied_werden_bottom_cta_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "pages_hero_hero_media_idx": { + "name": "pages_hero_hero_media_idx", + "columns": [ + "hero_media_id" + ], + "isUnique": false + }, + "pages_home_hero_home_hero_background_image_idx": { + "name": "pages_home_hero_home_hero_background_image_idx", + "columns": [ + "home_hero_background_image_id" + ], + "isUnique": false + }, + "pages_home_quick_check_home_quick_check_image_idx": { + "name": "pages_home_quick_check_home_quick_check_image_idx", + "columns": [ + "home_quick_check_image_id" + ], + "isUnique": false + }, + "pages_home_intro_home_intro_image_idx": { + "name": "pages_home_intro_home_intro_image_idx", + "columns": [ + "home_intro_image_id" + ], + "isUnique": false + }, + "pages_home_winners_home_winners_fallback_image_idx": { + "name": "pages_home_winners_home_winners_fallback_image_idx", + "columns": [ + "home_winners_fallback_image_id" + ], + "isUnique": false + }, + "pages_home_benefits_home_benefits_image_idx": { + "name": "pages_home_benefits_home_benefits_image_idx", + "columns": [ + "home_benefits_image_id" + ], + "isUnique": false + }, + "pages_home_application_home_application_award_image_idx": { + "name": "pages_home_application_home_application_award_image_idx", + "columns": [ + "home_application_award_image_id" + ], + "isUnique": false + }, + "pages_home_video_modal_home_video_modal_video_idx": { + "name": "pages_home_video_modal_home_video_modal_video_idx", + "columns": [ + "home_video_modal_video_id" + ], + "isUnique": false + }, + "pages_contact_hero_contact_hero_background_image_idx": { + "name": "pages_contact_hero_contact_hero_background_image_idx", + "columns": [ + "contact_hero_background_image_id" + ], + "isUnique": false + }, + "pages_contact_info_contact_info_form_image_idx": { + "name": "pages_contact_info_contact_info_form_image_idx", + "columns": [ + "contact_info_form_image_id" + ], + "isUnique": false + }, + "pages_participation_hero_participation_hero_background_i_idx": { + "name": "pages_participation_hero_participation_hero_background_i_idx", + "columns": [ + "participation_hero_background_image_id" + ], + "isUnique": false + }, + "pages_participation_application_form_participation_appli_idx": { + "name": "pages_participation_application_form_participation_appli_idx", + "columns": [ + "participation_application_form_image_id" + ], + "isUnique": false + }, + "pages_about_hero_about_hero_background_image_idx": { + "name": "pages_about_hero_about_hero_background_image_idx", + "columns": [ + "about_hero_background_image_id" + ], + "isUnique": false + }, + "pages_about_prize_about_prize_image_idx": { + "name": "pages_about_prize_about_prize_image_idx", + "columns": [ + "about_prize_image_id" + ], + "isUnique": false + }, + "pages_about_mittelstand_about_mittelstand_image_idx": { + "name": "pages_about_mittelstand_about_mittelstand_image_idx", + "columns": [ + "about_mittelstand_image_id" + ], + "isUnique": false + }, + "pages_about_highlights_about_highlights_fallback_image_idx": { + "name": "pages_about_highlights_about_highlights_fallback_image_idx", + "columns": [ + "about_highlights_fallback_image_id" + ], + "isUnique": false + }, + "pages_preistraeger_index_hero_preistraeger_index_hero_im_idx": { + "name": "pages_preistraeger_index_hero_preistraeger_index_hero_im_idx", + "columns": [ + "preistraeger_index_hero_image_id" + ], + "isUnique": false + }, + "pages_preistraeger_index_card_preistraeger_index_card_fa_idx": { + "name": "pages_preistraeger_index_card_preistraeger_index_card_fa_idx", + "columns": [ + "preistraeger_index_card_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_hero_press_index_hero_image_idx": { + "name": "pages_press_index_hero_press_index_hero_image_idx", + "columns": [ + "press_index_hero_image_id" + ], + "isUnique": false + }, + "pages_press_index_events_press_index_events_collection_f_idx": { + "name": "pages_press_index_events_press_index_events_collection_f_idx", + "columns": [ + "press_index_events_collection_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_news_press_index_news_collection_fallb_idx": { + "name": "pages_press_index_news_press_index_news_collection_fallb_idx", + "columns": [ + "press_index_news_collection_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_downloads_press_index_downloads_kit_fi_idx": { + "name": "pages_press_index_downloads_press_index_downloads_kit_fi_idx", + "columns": [ + "press_index_downloads_kit_file_id" + ], + "isUnique": false + }, + "pages_netzwerk_hero_netzwerk_hero_image_idx": { + "name": "pages_netzwerk_hero_netzwerk_hero_image_idx", + "columns": [ + "netzwerk_hero_image_id" + ], + "isUnique": false + }, + "pages_netzwerk_sponsoring_netzwerk_sponsoring_image_idx": { + "name": "pages_netzwerk_sponsoring_netzwerk_sponsoring_image_idx", + "columns": [ + "netzwerk_sponsoring_image_id" + ], + "isUnique": false + }, + "pages_mitglied_werden_hero_mitglied_werden_hero_image_idx": { + "name": "pages_mitglied_werden_hero_mitglied_werden_hero_image_idx", + "columns": [ + "mitglied_werden_hero_image_id" + ], + "isUnique": false + }, + "pages_mitglied_werden_form_intro_mitglied_werden_form_in_idx": { + "name": "pages_mitglied_werden_form_intro_mitglied_werden_form_in_idx", + "columns": [ + "mitglied_werden_form_intro_image_id" + ], + "isUnique": false + }, + "pages_meta_meta_image_idx": { + "name": "pages_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "pages_spa_path_idx": { + "name": "pages_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "pages_slug_idx": { + "name": "pages_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "pages_updated_at_idx": { + "name": "pages_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "pages_created_at_idx": { + "name": "pages_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "pages__status_idx": { + "name": "pages__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_hero_media_id_media_id_fk": { + "name": "pages_hero_media_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "hero_media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_hero_background_image_id_media_id_fk": { + "name": "pages_home_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_quick_check_image_id_media_id_fk": { + "name": "pages_home_quick_check_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_quick_check_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_intro_image_id_media_id_fk": { + "name": "pages_home_intro_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_winners_fallback_image_id_media_id_fk": { + "name": "pages_home_winners_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_winners_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_benefits_image_id_media_id_fk": { + "name": "pages_home_benefits_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_benefits_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_application_award_image_id_media_id_fk": { + "name": "pages_home_application_award_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_application_award_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_video_modal_video_id_media_id_fk": { + "name": "pages_home_video_modal_video_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_video_modal_video_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_contact_hero_background_image_id_media_id_fk": { + "name": "pages_contact_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "contact_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_contact_info_form_image_id_media_id_fk": { + "name": "pages_contact_info_form_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "contact_info_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_participation_hero_background_image_id_media_id_fk": { + "name": "pages_participation_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "participation_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_participation_application_form_image_id_media_id_fk": { + "name": "pages_participation_application_form_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "participation_application_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_hero_background_image_id_media_id_fk": { + "name": "pages_about_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_prize_image_id_media_id_fk": { + "name": "pages_about_prize_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_prize_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_mittelstand_image_id_media_id_fk": { + "name": "pages_about_mittelstand_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_mittelstand_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_highlights_fallback_image_id_media_id_fk": { + "name": "pages_about_highlights_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_highlights_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_preistraeger_index_hero_image_id_media_id_fk": { + "name": "pages_preistraeger_index_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "preistraeger_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_preistraeger_index_card_fallback_image_id_media_id_fk": { + "name": "pages_preistraeger_index_card_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "preistraeger_index_card_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_hero_image_id_media_id_fk": { + "name": "pages_press_index_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_events_collection_fallback_image_id_media_id_fk": { + "name": "pages_press_index_events_collection_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_events_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_news_collection_fallback_image_id_media_id_fk": { + "name": "pages_press_index_news_collection_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_news_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_downloads_kit_file_id_media_id_fk": { + "name": "pages_press_index_downloads_kit_file_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_downloads_kit_file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_netzwerk_hero_image_id_media_id_fk": { + "name": "pages_netzwerk_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "netzwerk_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_netzwerk_sponsoring_image_id_media_id_fk": { + "name": "pages_netzwerk_sponsoring_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "netzwerk_sponsoring_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_mitglied_werden_hero_image_id_media_id_fk": { + "name": "pages_mitglied_werden_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "mitglied_werden_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_mitglied_werden_form_intro_image_id_media_id_fk": { + "name": "pages_mitglied_werden_form_intro_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "mitglied_werden_form_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_meta_image_id_media_id_fk": { + "name": "pages_meta_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_rels": { + "name": "pages_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_rels_order_idx": { + "name": "pages_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "pages_rels_parent_idx": { + "name": "pages_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "pages_rels_path_idx": { + "name": "pages_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "pages_rels_pages_id_idx": { + "name": "pages_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "pages_rels_posts_id_idx": { + "name": "pages_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "pages_rels_categories_id_idx": { + "name": "pages_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "pages_rels_preistraeger_id_idx": { + "name": "pages_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_rels_parent_fk": { + "name": "pages_rels_parent_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_pages_fk": { + "name": "pages_rels_pages_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_posts_fk": { + "name": "pages_rels_posts_fk", + "tableFrom": "pages_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_categories_fk": { + "name": "pages_rels_categories_fk", + "tableFrom": "pages_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_preistraeger_fk": { + "name": "pages_rels_preistraeger_fk", + "tableFrom": "pages_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_hero_links": { + "name": "_pages_v_version_hero_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_hero_links_order_idx": { + "name": "_pages_v_version_hero_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_hero_links_parent_id_idx": { + "name": "_pages_v_version_hero_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_hero_links_parent_id_fk": { + "name": "_pages_v_version_hero_links_parent_id_fk", + "tableFrom": "_pages_v_version_hero_links", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_cta_links": { + "name": "_pages_v_blocks_cta_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_cta_links_order_idx": { + "name": "_pages_v_blocks_cta_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_links_parent_id_idx": { + "name": "_pages_v_blocks_cta_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_cta_links_parent_id_fk": { + "name": "_pages_v_blocks_cta_links_parent_id_fk", + "tableFrom": "_pages_v_blocks_cta_links", + "tableTo": "_pages_v_blocks_cta", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_cta": { + "name": "_pages_v_blocks_cta", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_cta_order_idx": { + "name": "_pages_v_blocks_cta_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_parent_id_idx": { + "name": "_pages_v_blocks_cta_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_path_idx": { + "name": "_pages_v_blocks_cta_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_cta_parent_id_fk": { + "name": "_pages_v_blocks_cta_parent_id_fk", + "tableFrom": "_pages_v_blocks_cta", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_content_columns": { + "name": "_pages_v_blocks_content_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "size": { + "name": "size", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oneThird'" + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_link": { + "name": "enable_link", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_content_columns_order_idx": { + "name": "_pages_v_blocks_content_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_content_columns_parent_id_idx": { + "name": "_pages_v_blocks_content_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_content_columns_parent_id_fk": { + "name": "_pages_v_blocks_content_columns_parent_id_fk", + "tableFrom": "_pages_v_blocks_content_columns", + "tableTo": "_pages_v_blocks_content", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_content": { + "name": "_pages_v_blocks_content", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_content_order_idx": { + "name": "_pages_v_blocks_content_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_content_parent_id_idx": { + "name": "_pages_v_blocks_content_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_content_path_idx": { + "name": "_pages_v_blocks_content_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_content_parent_id_fk": { + "name": "_pages_v_blocks_content_parent_id_fk", + "tableFrom": "_pages_v_blocks_content", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_media_block": { + "name": "_pages_v_blocks_media_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_media_block_order_idx": { + "name": "_pages_v_blocks_media_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_parent_id_idx": { + "name": "_pages_v_blocks_media_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_path_idx": { + "name": "_pages_v_blocks_media_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_media_idx": { + "name": "_pages_v_blocks_media_block_media_idx", + "columns": [ + "media_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_media_block_media_id_media_id_fk": { + "name": "_pages_v_blocks_media_block_media_id_media_id_fk", + "tableFrom": "_pages_v_blocks_media_block", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_media_block_parent_id_fk": { + "name": "_pages_v_blocks_media_block_parent_id_fk", + "tableFrom": "_pages_v_blocks_media_block", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_archive": { + "name": "_pages_v_blocks_archive", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "populate_by": { + "name": "populate_by", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'collection'" + }, + "relation_to": { + "name": "relation_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'posts'" + }, + "limit": { + "name": "limit", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 10 + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_archive_order_idx": { + "name": "_pages_v_blocks_archive_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_archive_parent_id_idx": { + "name": "_pages_v_blocks_archive_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_archive_path_idx": { + "name": "_pages_v_blocks_archive_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_archive_parent_id_fk": { + "name": "_pages_v_blocks_archive_parent_id_fk", + "tableFrom": "_pages_v_blocks_archive", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_form_block": { + "name": "_pages_v_blocks_form_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "form_id": { + "name": "form_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_intro": { + "name": "enable_intro", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_form_block_order_idx": { + "name": "_pages_v_blocks_form_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_form_block_parent_id_idx": { + "name": "_pages_v_blocks_form_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_form_block_path_idx": { + "name": "_pages_v_blocks_form_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "_pages_v_blocks_form_block_form_idx": { + "name": "_pages_v_blocks_form_block_form_idx", + "columns": [ + "form_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_form_block_form_id_forms_id_fk": { + "name": "_pages_v_blocks_form_block_form_id_forms_id_fk", + "tableFrom": "_pages_v_blocks_form_block", + "tableTo": "forms", + "columnsFrom": [ + "form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_form_block_parent_id_fk": { + "name": "_pages_v_blocks_form_block_parent_id_fk", + "tableFrom": "_pages_v_blocks_form_block", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_hero_partners": { + "name": "_pages_v_version_home_hero_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_hero_partners_order_idx": { + "name": "_pages_v_version_home_hero_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_hero_partners_parent_id_idx": { + "name": "_pages_v_version_home_hero_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_hero_partners_parent_id_fk": { + "name": "_pages_v_version_home_hero_partners_parent_id_fk", + "tableFrom": "_pages_v_version_home_hero_partners", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_quick_check_criteria": { + "name": "_pages_v_version_home_quick_check_criteria", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_quick_check_criteria_order_idx": { + "name": "_pages_v_version_home_quick_check_criteria_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_quick_check_criteria_parent_id_idx": { + "name": "_pages_v_version_home_quick_check_criteria_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_quick_check_criteria_parent_id_fk": { + "name": "_pages_v_version_home_quick_check_criteria_parent_id_fk", + "tableFrom": "_pages_v_version_home_quick_check_criteria", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_intro_stats": { + "name": "_pages_v_version_home_intro_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_intro_stats_order_idx": { + "name": "_pages_v_version_home_intro_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_intro_stats_parent_id_idx": { + "name": "_pages_v_version_home_intro_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_intro_stats_parent_id_fk": { + "name": "_pages_v_version_home_intro_stats_parent_id_fk", + "tableFrom": "_pages_v_version_home_intro_stats", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_testimonials_items": { + "name": "_pages_v_version_home_testimonials_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_testimonials_items_order_idx": { + "name": "_pages_v_version_home_testimonials_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_testimonials_items_parent_id_idx": { + "name": "_pages_v_version_home_testimonials_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_version_home_testimonials_items_image_idx": { + "name": "_pages_v_version_home_testimonials_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_testimonials_items_image_id_media_id_fk": { + "name": "_pages_v_version_home_testimonials_items_image_id_media_id_fk", + "tableFrom": "_pages_v_version_home_testimonials_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_testimonials_items_parent_id_fk": { + "name": "_pages_v_version_home_testimonials_items_parent_id_fk", + "tableFrom": "_pages_v_version_home_testimonials_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_benefits_items": { + "name": "_pages_v_version_home_benefits_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_benefits_items_order_idx": { + "name": "_pages_v_version_home_benefits_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_benefits_items_parent_id_idx": { + "name": "_pages_v_version_home_benefits_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_benefits_items_parent_id_fk": { + "name": "_pages_v_version_home_benefits_items_parent_id_fk", + "tableFrom": "_pages_v_version_home_benefits_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_application_benefits": { + "name": "_pages_v_version_home_application_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_application_benefits_order_idx": { + "name": "_pages_v_version_home_application_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_application_benefits_parent_id_idx": { + "name": "_pages_v_version_home_application_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_application_benefits_parent_id_fk": { + "name": "_pages_v_version_home_application_benefits_parent_id_fk", + "tableFrom": "_pages_v_version_home_application_benefits", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_self_steps_v": { + "name": "_home_self_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_self_steps_v_order_idx": { + "name": "_home_self_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_self_steps_v_parent_id_idx": { + "name": "_home_self_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_self_steps_v_parent_id_fk": { + "name": "_home_self_steps_v_parent_id_fk", + "tableFrom": "_home_self_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_nom_steps_v": { + "name": "_home_nom_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_nom_steps_v_order_idx": { + "name": "_home_nom_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_nom_steps_v_parent_id_idx": { + "name": "_home_nom_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_nom_steps_v_parent_id_fk": { + "name": "_home_nom_steps_v_parent_id_fk", + "tableFrom": "_home_nom_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_emp_opts_v": { + "name": "_home_emp_opts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_emp_opts_v_order_idx": { + "name": "_home_emp_opts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_emp_opts_v_parent_id_idx": { + "name": "_home_emp_opts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_emp_opts_v_parent_id_fk": { + "name": "_home_emp_opts_v_parent_id_fk", + "tableFrom": "_home_emp_opts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_items": { + "name": "_pages_v_version_contact_info_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "lines": { + "name": "lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_items_order_idx": { + "name": "_pages_v_version_contact_info_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_items_parent_id_idx": { + "name": "_pages_v_version_contact_info_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_items_parent_id_fk": { + "name": "_pages_v_version_contact_info_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_form_copy_steps": { + "name": "_pages_v_version_contact_info_form_copy_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_form_copy_steps_order_idx": { + "name": "_pages_v_version_contact_info_form_copy_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_form_copy_steps_parent_id_idx": { + "name": "_pages_v_version_contact_info_form_copy_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_form_copy_steps_parent_id_fk": { + "name": "_pages_v_version_contact_info_form_copy_steps_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_form_copy_steps", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_form_copy_subjects": { + "name": "_pages_v_version_contact_info_form_copy_subjects", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_form_copy_subjects_order_idx": { + "name": "_pages_v_version_contact_info_form_copy_subjects_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_form_copy_subjects_parent_id_idx": { + "name": "_pages_v_version_contact_info_form_copy_subjects_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_form_copy_subjects_parent_id_fk": { + "name": "_pages_v_version_contact_info_form_copy_subjects_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_form_copy_subjects", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_deadlines_items": { + "name": "_pages_v_version_contact_deadlines_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_deadlines_items_order_idx": { + "name": "_pages_v_version_contact_deadlines_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_deadlines_items_parent_id_idx": { + "name": "_pages_v_version_contact_deadlines_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_deadlines_items_parent_id_fk": { + "name": "_pages_v_version_contact_deadlines_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_deadlines_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_faq_items": { + "name": "_pages_v_version_contact_faq_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_faq_items_order_idx": { + "name": "_pages_v_version_contact_faq_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_faq_items_parent_id_idx": { + "name": "_pages_v_version_contact_faq_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_faq_items_parent_id_fk": { + "name": "_pages_v_version_contact_faq_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_faq_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_proc_steps_v": { + "name": "_proc_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_proc_steps_v_order_idx": { + "name": "_proc_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_proc_steps_v_parent_id_idx": { + "name": "_proc_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_proc_steps_v_parent_id_fk": { + "name": "_proc_steps_v_parent_id_fk", + "tableFrom": "_proc_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_elig_crit_v": { + "name": "_elig_crit_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_elig_crit_v_order_idx": { + "name": "_elig_crit_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_elig_crit_v_parent_id_idx": { + "name": "_elig_crit_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_elig_crit_v_parent_id_fk": { + "name": "_elig_crit_v_parent_id_fk", + "tableFrom": "_elig_crit_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_elig_notes_v": { + "name": "_elig_notes_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'building2'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_elig_notes_v_order_idx": { + "name": "_elig_notes_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_elig_notes_v_parent_id_idx": { + "name": "_elig_notes_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_elig_notes_v_parent_id_fk": { + "name": "_elig_notes_v_parent_id_fk", + "tableFrom": "_elig_notes_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_app_inst_v": { + "name": "_app_inst_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_app_inst_v_order_idx": { + "name": "_app_inst_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_app_inst_v_parent_id_idx": { + "name": "_app_inst_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_app_inst_v_parent_id_fk": { + "name": "_app_inst_v_parent_id_fk", + "tableFrom": "_app_inst_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_way_facts_v": { + "name": "_way_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_way_facts_v_order_idx": { + "name": "_way_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_way_facts_v_parent_id_idx": { + "name": "_way_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_way_facts_v_parent_id_fk": { + "name": "_way_facts_v_parent_id_fk", + "tableFrom": "_way_facts_v", + "tableTo": "_app_ways_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_app_ways_v": { + "name": "_app_ways_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'send'" + }, + "featured": { + "name": "featured", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "list_type": { + "name": "list_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'facts'" + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_app_ways_v_order_idx": { + "name": "_app_ways_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_app_ways_v_parent_id_idx": { + "name": "_app_ways_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_app_ways_v_parent_id_fk": { + "name": "_app_ways_v_parent_id_fk", + "tableFrom": "_app_ways_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_date_mob_v": { + "name": "_date_mob_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_date_mob_v_order_idx": { + "name": "_date_mob_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_date_mob_v_parent_id_idx": { + "name": "_date_mob_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_date_mob_v_parent_id_fk": { + "name": "_date_mob_v_parent_id_fk", + "tableFrom": "_date_mob_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_date_desk_v": { + "name": "_date_desk_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_date_desk_v_order_idx": { + "name": "_date_desk_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_date_desk_v_parent_id_idx": { + "name": "_date_desk_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_date_desk_v_parent_id_fk": { + "name": "_date_desk_v_parent_id_fk", + "tableFrom": "_date_desk_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_award_cards_v": { + "name": "_award_cards_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "article_cta_label": { + "name": "article_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel lesen'" + }, + "article_cta_url": { + "name": "article_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "mailto_cta_label": { + "name": "mailto_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "mailto_cta_url": { + "name": "mailto_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mailto:info@bmp-bayern.de'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_award_cards_v_order_idx": { + "name": "_award_cards_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_award_cards_v_parent_id_idx": { + "name": "_award_cards_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_award_cards_v_image_idx": { + "name": "_award_cards_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_award_cards_v_image_id_media_id_fk": { + "name": "_award_cards_v_image_id_media_id_fk", + "tableFrom": "_award_cards_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_award_cards_v_parent_id_fk": { + "name": "_award_cards_v_parent_id_fk", + "tableFrom": "_award_cards_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_form_facts_v": { + "name": "_form_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_form_facts_v_order_idx": { + "name": "_form_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_form_facts_v_parent_id_idx": { + "name": "_form_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_form_facts_v_parent_id_fk": { + "name": "_form_facts_v_parent_id_fk", + "tableFrom": "_form_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_self_steps_v": { + "name": "_self_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_self_steps_v_order_idx": { + "name": "_self_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_self_steps_v_parent_id_idx": { + "name": "_self_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_self_steps_v_parent_id_fk": { + "name": "_self_steps_v_parent_id_fk", + "tableFrom": "_self_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_nom_steps_v": { + "name": "_nom_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_nom_steps_v_order_idx": { + "name": "_nom_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_nom_steps_v_parent_id_idx": { + "name": "_nom_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_nom_steps_v_parent_id_fk": { + "name": "_nom_steps_v_parent_id_fk", + "tableFrom": "_nom_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_emp_opts_v": { + "name": "_emp_opts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_emp_opts_v_order_idx": { + "name": "_emp_opts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_emp_opts_v_parent_id_idx": { + "name": "_emp_opts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_emp_opts_v_parent_id_fk": { + "name": "_emp_opts_v_parent_id_fk", + "tableFrom": "_emp_opts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_hero_stats_v": { + "name": "_about_hero_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_hero_stats_v_order_idx": { + "name": "_about_hero_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_hero_stats_v_parent_id_idx": { + "name": "_about_hero_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_hero_stats_v_parent_id_fk": { + "name": "_about_hero_stats_v_parent_id_fk", + "tableFrom": "_about_hero_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_prize_body_v": { + "name": "_about_prize_body_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_prize_body_v_order_idx": { + "name": "_about_prize_body_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_prize_body_v_parent_id_idx": { + "name": "_about_prize_body_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_prize_body_v_parent_id_fk": { + "name": "_about_prize_body_v_parent_id_fk", + "tableFrom": "_about_prize_body_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_prize_facts_v": { + "name": "_about_prize_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_prize_facts_v_order_idx": { + "name": "_about_prize_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_prize_facts_v_parent_id_idx": { + "name": "_about_prize_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_prize_facts_v_parent_id_fk": { + "name": "_about_prize_facts_v_parent_id_fk", + "tableFrom": "_about_prize_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_mid_body_v": { + "name": "_about_mid_body_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_mid_body_v_order_idx": { + "name": "_about_mid_body_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_mid_body_v_parent_id_idx": { + "name": "_about_mid_body_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_mid_body_v_parent_id_fk": { + "name": "_about_mid_body_v_parent_id_fk", + "tableFrom": "_about_mid_body_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_tst_items_v": { + "name": "_about_tst_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_tst_items_v_order_idx": { + "name": "_about_tst_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_tst_items_v_parent_id_idx": { + "name": "_about_tst_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_about_tst_items_v_image_idx": { + "name": "_about_tst_items_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_tst_items_v_image_id_media_id_fk": { + "name": "_about_tst_items_v_image_id_media_id_fk", + "tableFrom": "_about_tst_items_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_about_tst_items_v_parent_id_fk": { + "name": "_about_tst_items_v_parent_id_fk", + "tableFrom": "_about_tst_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_hist_items_v": { + "name": "_about_hist_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_hist_items_v_order_idx": { + "name": "_about_hist_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_hist_items_v_parent_id_idx": { + "name": "_about_hist_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_hist_items_v_parent_id_fk": { + "name": "_about_hist_items_v_parent_id_fk", + "tableFrom": "_about_hist_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_goal_items_v": { + "name": "_about_goal_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_goal_items_v_order_idx": { + "name": "_about_goal_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_goal_items_v_parent_id_idx": { + "name": "_about_goal_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_goal_items_v_parent_id_fk": { + "name": "_about_goal_items_v_parent_id_fk", + "tableFrom": "_about_goal_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_val_items_v": { + "name": "_about_val_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_val_items_v_order_idx": { + "name": "_about_val_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_val_items_v_parent_id_idx": { + "name": "_about_val_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_val_items_v_parent_id_fk": { + "name": "_about_val_items_v_parent_id_fk", + "tableFrom": "_about_val_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_imp_sections_v": { + "name": "_imp_sections_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_imp_sections_v_order_idx": { + "name": "_imp_sections_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_imp_sections_v_parent_id_idx": { + "name": "_imp_sections_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_imp_sections_v_parent_id_fk": { + "name": "_imp_sections_v_parent_id_fk", + "tableFrom": "_imp_sections_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_data_sections_v": { + "name": "_data_sections_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_data_sections_v_order_idx": { + "name": "_data_sections_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_data_sections_v_parent_id_idx": { + "name": "_data_sections_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_data_sections_v_parent_id_fk": { + "name": "_data_sections_v_parent_id_fk", + "tableFrom": "_data_sections_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_press_index_events_status_labels": { + "name": "_pages_v_version_press_index_events_status_labels", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_press_index_events_status_labels_order_idx": { + "name": "_pages_v_version_press_index_events_status_labels_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_press_index_events_status_labels_parent_id_idx": { + "name": "_pages_v_version_press_index_events_status_labels_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_press_index_events_status_labels_parent_id_fk": { + "name": "_pages_v_version_press_index_events_status_labels_parent_id_fk", + "tableFrom": "_pages_v_version_press_index_events_status_labels", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_press_events_fb_v": { + "name": "_press_events_fb_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_press_events_fb_v_order_idx": { + "name": "_press_events_fb_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_press_events_fb_v_parent_id_idx": { + "name": "_press_events_fb_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_press_events_fb_v_image_idx": { + "name": "_press_events_fb_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_press_events_fb_v_image_id_media_id_fk": { + "name": "_press_events_fb_v_image_id_media_id_fk", + "tableFrom": "_press_events_fb_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_press_events_fb_v_parent_id_fk": { + "name": "_press_events_fb_v_parent_id_fk", + "tableFrom": "_press_events_fb_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_press_news_fb_v": { + "name": "_press_news_fb_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_press_news_fb_v_order_idx": { + "name": "_press_news_fb_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_press_news_fb_v_parent_id_idx": { + "name": "_press_news_fb_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_press_news_fb_v_image_idx": { + "name": "_press_news_fb_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_press_news_fb_v_image_id_media_id_fk": { + "name": "_press_news_fb_v_image_id_media_id_fk", + "tableFrom": "_press_news_fb_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_press_news_fb_v_parent_id_fk": { + "name": "_press_news_fb_v_parent_id_fk", + "tableFrom": "_press_news_fb_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_upload_stats_v": { + "name": "_upload_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_upload_stats_v_order_idx": { + "name": "_upload_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_upload_stats_v_parent_id_idx": { + "name": "_upload_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_upload_stats_v_parent_id_fk": { + "name": "_upload_stats_v_parent_id_fk", + "tableFrom": "_upload_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_upload_req_cards_v": { + "name": "_upload_req_cards_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_upload_req_cards_v_order_idx": { + "name": "_upload_req_cards_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_upload_req_cards_v_parent_id_idx": { + "name": "_upload_req_cards_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_upload_req_cards_v_parent_id_fk": { + "name": "_upload_req_cards_v_parent_id_fk", + "tableFrom": "_upload_req_cards_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_patrons_v": { + "name": "_network_patrons_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line1": { + "name": "title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line2": { + "name": "title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "institution": { + "name": "institution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_patrons_v_order_idx": { + "name": "_network_patrons_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_patrons_v_parent_id_idx": { + "name": "_network_patrons_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_patrons_v_image_upload_idx": { + "name": "_network_patrons_v_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_patrons_v_image_upload_id_media_id_fk": { + "name": "_network_patrons_v_image_upload_id_media_id_fk", + "tableFrom": "_network_patrons_v", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_patrons_v_parent_id_fk": { + "name": "_network_patrons_v_parent_id_fk", + "tableFrom": "_network_patrons_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_stats_v": { + "name": "_network_jury_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_stats_v_order_idx": { + "name": "_network_jury_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_stats_v_parent_id_idx": { + "name": "_network_jury_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_stats_v_parent_id_fk": { + "name": "_network_jury_stats_v_parent_id_fk", + "tableFrom": "_network_jury_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_d_stats_v": { + "name": "_network_jury_d_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_d_stats_v_order_idx": { + "name": "_network_jury_d_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_d_stats_v_parent_id_idx": { + "name": "_network_jury_d_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_d_stats_v_parent_id_fk": { + "name": "_network_jury_d_stats_v_parent_id_fk", + "tableFrom": "_network_jury_d_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_v": { + "name": "_network_jury_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bio": { + "name": "bio", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_v_order_idx": { + "name": "_network_jury_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_v_parent_id_idx": { + "name": "_network_jury_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_jury_v_image_upload_idx": { + "name": "_network_jury_v_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_v_image_upload_id_media_id_fk": { + "name": "_network_jury_v_image_upload_id_media_id_fk", + "tableFrom": "_network_jury_v", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_jury_v_parent_id_fk": { + "name": "_network_jury_v_parent_id_fk", + "tableFrom": "_network_jury_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_eval_v": { + "name": "_network_eval_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_eval_v_order_idx": { + "name": "_network_eval_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_eval_v_parent_id_idx": { + "name": "_network_eval_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_eval_v_parent_id_fk": { + "name": "_network_eval_v_parent_id_fk", + "tableFrom": "_network_eval_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_tiers_v": { + "name": "_network_tiers_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_tiers_v_order_idx": { + "name": "_network_tiers_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_tiers_v_parent_id_idx": { + "name": "_network_tiers_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_tiers_v_parent_id_fk": { + "name": "_network_tiers_v_parent_id_fk", + "tableFrom": "_network_tiers_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_partners_v": { + "name": "_network_partners_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "full_desc": { + "name": "full_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_kind": { + "name": "logo_kind", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'text'" + }, + "logo_text": { + "name": "logo_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_subtext": { + "name": "logo_subtext", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_color": { + "name": "logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "linkedin": { + "name": "linkedin", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_img": { + "name": "hero_img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_partners_v_order_idx": { + "name": "_network_partners_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_partners_v_parent_id_idx": { + "name": "_network_partners_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_partners_v_logo_idx": { + "name": "_network_partners_v_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_partners_v_logo_id_media_id_fk": { + "name": "_network_partners_v_logo_id_media_id_fk", + "tableFrom": "_network_partners_v", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_partners_v_parent_id_fk": { + "name": "_network_partners_v_parent_id_fk", + "tableFrom": "_network_partners_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_sponsor_bens_v": { + "name": "_network_sponsor_bens_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sub": { + "name": "sub", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_sponsor_bens_v_order_idx": { + "name": "_network_sponsor_bens_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_sponsor_bens_v_parent_id_idx": { + "name": "_network_sponsor_bens_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_sponsor_bens_v_parent_id_fk": { + "name": "_network_sponsor_bens_v_parent_id_fk", + "tableFrom": "_network_sponsor_bens_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_form_steps_v": { + "name": "_network_form_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_form_steps_v_order_idx": { + "name": "_network_form_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_form_steps_v_parent_id_idx": { + "name": "_network_form_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_form_steps_v_parent_id_fk": { + "name": "_network_form_steps_v_parent_id_fk", + "tableFrom": "_network_form_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_form_pkgs_v": { + "name": "_network_form_pkgs_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_form_pkgs_v_order_idx": { + "name": "_network_form_pkgs_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_form_pkgs_v_parent_id_idx": { + "name": "_network_form_pkgs_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_form_pkgs_v_parent_id_fk": { + "name": "_network_form_pkgs_v_parent_id_fk", + "tableFrom": "_network_form_pkgs_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_hero_stats_v": { + "name": "_member_hero_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_hero_stats_v_order_idx": { + "name": "_member_hero_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_hero_stats_v_parent_id_idx": { + "name": "_member_hero_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_hero_stats_v_parent_id_fk": { + "name": "_member_hero_stats_v_parent_id_fk", + "tableFrom": "_member_hero_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_benefits_v": { + "name": "_member_benefits_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'users'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_benefits_v_order_idx": { + "name": "_member_benefits_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_benefits_v_parent_id_idx": { + "name": "_member_benefits_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_benefits_v_parent_id_fk": { + "name": "_member_benefits_v_parent_id_fk", + "tableFrom": "_member_benefits_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_about_copy_v": { + "name": "_member_about_copy_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_about_copy_v_order_idx": { + "name": "_member_about_copy_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_about_copy_v_parent_id_idx": { + "name": "_member_about_copy_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_about_copy_v_parent_id_fk": { + "name": "_member_about_copy_v_parent_id_fk", + "tableFrom": "_member_about_copy_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_about_facts_v": { + "name": "_member_about_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_about_facts_v_order_idx": { + "name": "_member_about_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_about_facts_v_parent_id_idx": { + "name": "_member_about_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_about_facts_v_parent_id_fk": { + "name": "_member_about_facts_v_parent_id_fk", + "tableFrom": "_member_about_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_pricing_v": { + "name": "_member_pricing_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "max": { + "name": "max", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "annual": { + "name": "annual", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_pricing_v_order_idx": { + "name": "_member_pricing_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_pricing_v_parent_id_idx": { + "name": "_member_pricing_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_pricing_v_parent_id_fk": { + "name": "_member_pricing_v_parent_id_fk", + "tableFrom": "_member_pricing_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_app_options_v": { + "name": "_member_app_options_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "number": { + "name": "number", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "eyebrow": { + "name": "eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "file_id": { + "name": "file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "download": { + "name": "download", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_app_options_v_order_idx": { + "name": "_member_app_options_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_app_options_v_parent_id_idx": { + "name": "_member_app_options_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_member_app_options_v_file_idx": { + "name": "_member_app_options_v_file_idx", + "columns": [ + "file_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_app_options_v_file_id_media_id_fk": { + "name": "_member_app_options_v_file_id_media_id_fk", + "tableFrom": "_member_app_options_v", + "tableTo": "media", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_member_app_options_v_parent_id_fk": { + "name": "_member_app_options_v_parent_id_fk", + "tableFrom": "_member_app_options_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_promises_v": { + "name": "_member_promises_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_promises_v_order_idx": { + "name": "_member_promises_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_promises_v_parent_id_idx": { + "name": "_member_promises_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_promises_v_parent_id_fk": { + "name": "_member_promises_v_parent_id_fk", + "tableFrom": "_member_promises_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_quotes_v": { + "name": "_member_quotes_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "initials": { + "name": "initials", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_quotes_v_order_idx": { + "name": "_member_quotes_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_quotes_v_parent_id_idx": { + "name": "_member_quotes_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_quotes_v_parent_id_fk": { + "name": "_member_quotes_v_parent_id_fk", + "tableFrom": "_member_quotes_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_faq_v": { + "name": "_member_faq_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_faq_v_order_idx": { + "name": "_member_faq_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_faq_v_parent_id_idx": { + "name": "_member_faq_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_faq_v_parent_id_fk": { + "name": "_member_faq_v_parent_id_fk", + "tableFrom": "_member_faq_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v": { + "name": "_pages_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_type": { + "name": "version_hero_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'lowImpact'" + }, + "version_hero_rich_text": { + "name": "version_hero_rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_media_id": { + "name": "version_hero_media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_hero_background_image_id": { + "name": "version_home_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_hero_image_alt": { + "name": "version_home_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Awards Gala'" + }, + "version_home_hero_badge": { + "name": "version_home_hero_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026 geschlossen'" + }, + "version_home_hero_heading_line1": { + "name": "version_home_hero_heading_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERNS BESTE'" + }, + "version_home_hero_heading_accent": { + "name": "version_home_hero_heading_accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTÄNDLER.'" + }, + "version_home_hero_description": { + "name": "version_home_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis würdigt herausragende Leistungen – von Innovation über Nachhaltigkeit bis hin zur Exzellenz.'" + }, + "version_home_hero_primary_cta_label": { + "name": "version_home_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_home_hero_primary_cta_url": { + "name": "version_home_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_home_hero_secondary_cta_label": { + "name": "version_home_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "version_home_hero_secondary_cta_url": { + "name": "version_home_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_home_hero_video_label": { + "name": "version_home_hero_video_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Film abspielen'" + }, + "version_home_hero_partners_label": { + "name": "version_home_hero_partners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unsere Partner'" + }, + "version_home_quick_check_eyebrow": { + "name": "version_home_quick_check_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_home_quick_check_heading": { + "name": "version_home_quick_check_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SIND SIE\nBERECHTIGT?'" + }, + "version_home_quick_check_image_id": { + "name": "version_home_quick_check_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_quick_check_image_alt": { + "name": "version_home_quick_check_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bühne'" + }, + "version_home_quick_check_body": { + "name": "version_home_quick_check_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte KMU im Freistaat. Fünf Kriterien entscheiden, erfüllen Sie alle fünf, steht Ihrer Bewerbung nichts im Weg.'" + }, + "version_home_quick_check_note": { + "name": "version_home_quick_check_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auch ein Verbund bzw. eine Gemeinschaft von mittelständischen Unternehmen oder von mittelständischen Unternehmen und Organisationen/Institutionen mit Schwerpunkt in Bayern kann teilnehmen.'" + }, + "version_home_quick_check_cta_label": { + "name": "version_home_quick_check_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Weg zum Preis'" + }, + "version_home_quick_check_cta_url": { + "name": "version_home_quick_check_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_home_intro_eyebrow": { + "name": "version_home_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ein Gewinn für alle'" + }, + "version_home_intro_heading": { + "name": "version_home_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSZEICHNUNG\nFÜR DIE BESTEN.'" + }, + "version_home_intro_image_id": { + "name": "version_home_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_intro_image_alt": { + "name": "version_home_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Auszeichnung'" + }, + "version_home_intro_quote": { + "name": "version_home_intro_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Ein Unternehmen zu gründen erfordert nicht allein spezielle Fähigkeiten. Es erfordert Persönlichkeit!“'" + }, + "version_home_intro_body": { + "name": "version_home_intro_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir suchen Vorbilder, die sich trotz aller Risiken nicht scheuen, Visionen in Businesspläne und Ideen in Unternehmungen zu verwandeln, und das mit großem persönlichen Einsatz und Verantwortung für Ihre Mitarbeiter. Seit vielen Jahren würdigen wir herausragende unternehmerische Leistungen im Freistaat.'" + }, + "version_home_intro_cta_label": { + "name": "version_home_intro_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr über den Preis'" + }, + "version_home_intro_cta_url": { + "name": "version_home_intro_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/der-bmp'" + }, + "version_home_winners_eyebrow": { + "name": "version_home_winners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Success Stories'" + }, + "version_home_winners_heading": { + "name": "version_home_winners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DIE BESTEN UNTERNEHMEN IN BAYERN'" + }, + "version_home_winners_cta_label": { + "name": "version_home_winners_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_home_winners_cta_url": { + "name": "version_home_winners_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_home_winners_fallback_image_id": { + "name": "version_home_winners_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_winners_card_fallback_title": { + "name": "version_home_winners_card_fallback_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_home_winners_hover_label": { + "name": "version_home_winners_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "version_home_testimonials_eyebrow": { + "name": "version_home_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "version_home_testimonials_heading": { + "name": "version_home_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "version_home_testimonials_desktop_heading": { + "name": "version_home_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "version_home_testimonials_year_prefix": { + "name": "version_home_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_home_testimonials_previous_label": { + "name": "version_home_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "version_home_testimonials_next_label": { + "name": "version_home_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "version_home_testimonials_slide_label_prefix": { + "name": "version_home_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "version_home_benefits_eyebrow": { + "name": "version_home_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr als nur ein Preis'" + }, + "version_home_benefits_heading": { + "name": "version_home_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM SICH DIE\nTEILNAHME LOHNT.'" + }, + "version_home_benefits_image_id": { + "name": "version_home_benefits_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_benefits_image_alt": { + "name": "version_home_benefits_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Netzwerk'" + }, + "version_home_benefits_image_label": { + "name": "version_home_benefits_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala-Netzwerk'" + }, + "version_home_application_eyebrow": { + "name": "version_home_application_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Chance ergreifen'" + }, + "version_home_application_heading": { + "name": "version_home_application_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN\nAUCH SIE\nGESCHICHTE.'" + }, + "version_home_application_body": { + "name": "version_home_application_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands – vollständig kostenfrei.'" + }, + "version_home_application_award_image_id": { + "name": "version_home_application_award_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_application_award_image_alt": { + "name": "version_home_application_award_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bayerischer Mittelstandspreis'" + }, + "version_home_application_award_caption": { + "name": "version_home_application_award_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_home_application_form_eyebrow": { + "name": "version_home_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung 2026'" + }, + "version_home_application_form_title": { + "name": "version_home_application_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos bewerben'" + }, + "version_home_application_footnote": { + "name": "version_home_application_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos und unverbindlich –'" + }, + "version_home_application_footnote_strong": { + "name": "version_home_application_footnote_strong", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'keine Teilnahmegebühr'" + }, + "version_home_form_step_complete_label": { + "name": "version_home_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_home_form_back_label": { + "name": "version_home_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_home_form_next_label": { + "name": "version_home_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_home_form_submit_label": { + "name": "version_home_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "version_home_form_yes_label": { + "name": "version_home_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "version_home_form_no_label": { + "name": "version_home_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "version_home_form_required_suffix": { + "name": "version_home_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "version_home_form_validation_choose": { + "name": "version_home_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "version_home_form_validation_required": { + "name": "version_home_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_home_form_validation_invalid_email": { + "name": "version_home_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_home_form_type_step_eyebrow": { + "name": "version_home_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "version_home_form_type_step_heading": { + "name": "version_home_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "version_home_form_type_step_self_title": { + "name": "version_home_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "version_home_form_type_step_self_desc": { + "name": "version_home_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "version_home_form_type_step_nomination_title": { + "name": "version_home_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "version_home_form_type_step_nomination_desc": { + "name": "version_home_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "version_home_form_eligibility_allowed_employee_values": { + "name": "version_home_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "version_home_form_eligibility_required_bayern_value": { + "name": "version_home_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "version_home_form_eligibility_eyebrow": { + "name": "version_home_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_home_form_eligibility_heading": { + "name": "version_home_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "version_home_form_eligibility_employees_label": { + "name": "version_home_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "version_home_form_eligibility_bayern_label": { + "name": "version_home_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "version_home_form_eligibility_owner_label": { + "name": "version_home_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "version_home_form_eligibility_ineligible_heading": { + "name": "version_home_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "version_home_form_eligibility_ineligible_body": { + "name": "version_home_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "version_home_form_eligibility_ineligible_contact_prefix": { + "name": "version_home_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "version_home_form_eligibility_ineligible_contact_email": { + "name": "version_home_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "version_home_form_self_contact_eyebrow": { + "name": "version_home_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_home_form_self_contact_heading": { + "name": "version_home_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "version_home_form_self_contact_company_label": { + "name": "version_home_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_home_form_self_contact_company_placeholder": { + "name": "version_home_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_home_form_self_contact_name_label": { + "name": "version_home_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_home_form_self_contact_name_placeholder": { + "name": "version_home_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_home_form_self_contact_email_label": { + "name": "version_home_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_home_form_self_contact_email_placeholder": { + "name": "version_home_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_home_form_self_contact_phone_label": { + "name": "version_home_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "version_home_form_self_contact_phone_placeholder": { + "name": "version_home_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "version_home_form_self_contact_footnote": { + "name": "version_home_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "version_home_form_self_summary_eyebrow": { + "name": "version_home_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_home_form_self_summary_heading": { + "name": "version_home_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "version_home_form_self_summary_company_label": { + "name": "version_home_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_home_form_self_summary_employees_label": { + "name": "version_home_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_home_form_self_summary_location_label": { + "name": "version_home_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_home_form_self_summary_location_prefix": { + "name": "version_home_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "version_home_form_self_summary_contact_label": { + "name": "version_home_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_home_form_nomination_company_eyebrow": { + "name": "version_home_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "version_home_form_nomination_company_heading": { + "name": "version_home_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "version_home_form_nomination_company_company_label": { + "name": "version_home_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_home_form_nomination_company_company_placeholder": { + "name": "version_home_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_home_form_nomination_company_industry_label": { + "name": "version_home_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_home_form_nomination_company_industry_placeholder": { + "name": "version_home_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "version_home_form_nomination_company_location_label": { + "name": "version_home_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "version_home_form_nomination_company_location_placeholder": { + "name": "version_home_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "version_home_form_nomination_contact_eyebrow": { + "name": "version_home_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "version_home_form_nomination_contact_heading": { + "name": "version_home_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "version_home_form_nomination_contact_name_label": { + "name": "version_home_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_home_form_nomination_contact_name_placeholder": { + "name": "version_home_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_home_form_nomination_contact_email_label": { + "name": "version_home_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "version_home_form_nomination_contact_email_placeholder": { + "name": "version_home_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_home_form_nomination_contact_relationship_label": { + "name": "version_home_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "version_home_form_nomination_contact_relationship_placeholder": { + "name": "version_home_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "version_home_form_nomination_contact_footnote": { + "name": "version_home_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "version_home_form_nomination_summary_eyebrow": { + "name": "version_home_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_home_form_nomination_summary_heading": { + "name": "version_home_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "version_home_form_nomination_summary_company_label": { + "name": "version_home_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_home_form_nomination_summary_industry_label": { + "name": "version_home_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_home_form_nomination_summary_location_label": { + "name": "version_home_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_home_form_nomination_summary_nominated_by_label": { + "name": "version_home_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "version_home_form_nomination_summary_empty_value": { + "name": "version_home_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "version_home_form_success_self_heading": { + "name": "version_home_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_home_form_success_nomination_heading": { + "name": "version_home_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "version_home_form_success_self_prefix": { + "name": "version_home_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_home_form_success_self_middle": { + "name": "version_home_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "version_home_form_success_self_suffix": { + "name": "version_home_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "version_home_form_success_nomination_prefix": { + "name": "version_home_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_home_form_success_nomination_middle": { + "name": "version_home_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "version_home_form_success_nomination_suffix": { + "name": "version_home_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "version_home_video_modal_video_id": { + "name": "version_home_video_modal_video_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_video_modal_title": { + "name": "version_home_video_modal_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Video-Player Platzhalter'" + }, + "version_home_video_modal_description": { + "name": "version_home_video_modal_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hier würde das Image-Video des BMP geladen werden.'" + }, + "version_home_video_modal_close_label": { + "name": "version_home_video_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "version_contact_hero_background_image_id": { + "name": "version_contact_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_contact_hero_image_alt": { + "name": "version_contact_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "version_contact_hero_eyebrow": { + "name": "version_contact_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dialog & Service'" + }, + "version_contact_hero_heading": { + "name": "version_contact_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir sind\nfür Sie da.'" + }, + "version_contact_hero_description": { + "name": "version_contact_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen zur Bewerbung, zur Gala oder zu Partnermöglichkeiten – unser Team begleitet Sie persönlich.'" + }, + "version_contact_info_eyebrow": { + "name": "version_contact_info_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktkontakt'" + }, + "version_contact_info_heading": { + "name": "version_contact_info_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt­möglichkeiten'" + }, + "version_contact_info_next_award_label": { + "name": "version_contact_info_next_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächste Preisverleihung:'" + }, + "version_contact_info_next_award_date": { + "name": "version_contact_info_next_award_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'22. Oktober 2026'" + }, + "version_contact_info_form_image_id": { + "name": "version_contact_info_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_contact_info_form_image_alt": { + "name": "version_contact_info_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala 2025'" + }, + "version_contact_info_form_image_label": { + "name": "version_contact_info_form_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala 2025 München'" + }, + "version_contact_info_form_eyebrow": { + "name": "version_contact_info_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontaktformular'" + }, + "version_contact_info_form_title": { + "name": "version_contact_info_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie uns'" + }, + "version_contact_info_form_copy_prompts_subject": { + "name": "version_contact_info_form_copy_prompts_subject", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Womit können wir Ihnen helfen?'" + }, + "version_contact_info_form_copy_prompts_contact": { + "name": "version_contact_info_form_copy_prompts_contact", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie dürfen wir Sie kontaktieren?'" + }, + "version_contact_info_form_copy_prompts_message": { + "name": "version_contact_info_form_copy_prompts_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was möchten Sie uns mitteilen?'" + }, + "version_contact_info_form_copy_fields_name_label": { + "name": "version_contact_info_form_copy_fields_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Name'" + }, + "version_contact_info_form_copy_fields_name_placeholder": { + "name": "version_contact_info_form_copy_fields_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_contact_info_form_copy_fields_email_label": { + "name": "version_contact_info_form_copy_fields_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_contact_info_form_copy_fields_email_placeholder": { + "name": "version_contact_info_form_copy_fields_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_contact_info_form_copy_fields_message_label": { + "name": "version_contact_info_form_copy_fields_message_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht'" + }, + "version_contact_info_form_copy_fields_message_placeholder": { + "name": "version_contact_info_form_copy_fields_message_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie Ihre Nachricht…'" + }, + "version_contact_info_form_copy_validation_name_required": { + "name": "version_contact_info_form_copy_validation_name_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Namen angeben'" + }, + "version_contact_info_form_copy_validation_email_required": { + "name": "version_contact_info_form_copy_validation_email_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte E-Mail angeben'" + }, + "version_contact_info_form_copy_validation_email_invalid": { + "name": "version_contact_info_form_copy_validation_email_invalid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_contact_info_form_copy_validation_message_required": { + "name": "version_contact_info_form_copy_validation_message_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Nachricht verfassen.'" + }, + "version_contact_info_form_copy_navigation_back": { + "name": "version_contact_info_form_copy_navigation_back", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_contact_info_form_copy_navigation_next": { + "name": "version_contact_info_form_copy_navigation_next", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_contact_info_form_copy_navigation_submit": { + "name": "version_contact_info_form_copy_navigation_submit", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage senden'" + }, + "version_contact_info_form_copy_success_heading": { + "name": "version_contact_info_form_copy_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht gesendet'" + }, + "version_contact_info_form_copy_success_prefix": { + "name": "version_contact_info_form_copy_success_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Danke,'" + }, + "version_contact_info_form_copy_success_suffix_before_email": { + "name": "version_contact_info_form_copy_success_suffix_before_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns zeitnah bei'" + }, + "version_contact_deadlines_watermark": { + "name": "version_contact_deadlines_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'2026'" + }, + "version_contact_deadlines_eyebrow": { + "name": "version_contact_deadlines_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fahrplan 2026'" + }, + "version_contact_faq_eyebrow": { + "name": "version_contact_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Antworten'" + }, + "version_contact_faq_heading": { + "name": "version_contact_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige\nFragen'" + }, + "version_participation_hero_background_image_id": { + "name": "version_participation_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_participation_hero_image_alt": { + "name": "version_participation_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Teilnahme BMP'" + }, + "version_participation_hero_eyebrow": { + "name": "version_participation_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026'" + }, + "version_participation_hero_heading": { + "name": "version_participation_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'GESTALTEN SIE\nBAYERNS ZUKUNFT.'" + }, + "version_participation_hero_description": { + "name": "version_participation_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alles, was Sie für Ihre erfolgreiche Bewerbung zum Bayerischen Mittelstandspreis wissen müssen.'" + }, + "version_participation_process_eyebrow": { + "name": "version_participation_process_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt für Schritt'" + }, + "version_participation_process_heading": { + "name": "version_participation_process_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR WEG ZUM\nPREIS.'" + }, + "version_participation_process_description": { + "name": "version_participation_process_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Einreichung bis zur Gala – vier klar definierte Schritte auf dem Weg zur höchsten Auszeichnung des bayerischen Mittelstands.'" + }, + "version_participation_process_step_prefix": { + "name": "version_participation_process_step_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt'" + }, + "version_participation_process_scroll_hint": { + "name": "version_participation_process_scroll_hint", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Scrollen zum Erkunden'" + }, + "version_participation_process_progress_label": { + "name": "version_participation_process_progress_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'01 / 04'" + }, + "version_participation_eligibility_eyebrow": { + "name": "version_participation_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berechtigung'" + }, + "version_participation_eligibility_heading": { + "name": "version_participation_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER KANN\nTEILNEHMEN?'" + }, + "version_participation_eligibility_description": { + "name": "version_participation_eligibility_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vier klar definierte Kriterien: Erfüllen Sie alle, bewerben Sie sich kostenlos und ohne bürokratischen Aufwand.'" + }, + "version_participation_eligibility_primary_cta_label": { + "name": "version_participation_eligibility_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_participation_eligibility_primary_cta_url": { + "name": "version_participation_eligibility_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_eligibility_secondary_cta_label": { + "name": "version_participation_eligibility_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "version_participation_eligibility_secondary_cta_url": { + "name": "version_participation_eligibility_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_participation_eligibility_nudge_text": { + "name": "version_participation_eligibility_nudge_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle 4 Punkte erfüllt? Dann jetzt kostenlos bewerben.'" + }, + "version_participation_eligibility_nudge_cta_label": { + "name": "version_participation_eligibility_nudge_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "version_participation_eligibility_nudge_cta_url": { + "name": "version_participation_eligibility_nudge_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_application_ways_eyebrow": { + "name": "version_participation_application_ways_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "version_participation_application_ways_heading": { + "name": "version_participation_application_ways_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'HIER KÖNNEN SIE SICH\nBEWERBEN ODER EIN\nUNTERNEHMEN VORSCHLAGEN.'" + }, + "version_participation_application_ways_description": { + "name": "version_participation_application_ways_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Als Unternehmen haben Sie zwei Möglichkeiten: Sie werden von einem unterstützenden Partner oder einer Institution vorgeschlagen, oder Sie ergreifen selbst die Initiative und füllen unsere Anmeldung aus. Die Teilnahme ist in allen Fällen kostenfrei.'" + }, + "version_participation_application_ways_recommended_label": { + "name": "version_participation_application_ways_recommended_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Empfohlen'" + }, + "version_participation_application_ways_fallback_cta_label": { + "name": "version_participation_application_ways_fallback_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "version_participation_application_ways_fallback_cta_url": { + "name": "version_participation_application_ways_fallback_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_dates_banner_heading": { + "name": "version_participation_dates_banner_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wichtige Termine 2026'" + }, + "version_participation_dates_banner_description": { + "name": "version_participation_dates_banner_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Planen Sie Ihre Teilnahme rechtzeitig.'" + }, + "version_participation_awards_grid_eyebrow": { + "name": "version_participation_awards_grid_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnungen 2026'" + }, + "version_participation_awards_grid_heading": { + "name": "version_participation_awards_grid_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.'" + }, + "version_participation_awards_grid_description": { + "name": "version_participation_awards_grid_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.'" + }, + "version_participation_application_form_image_id": { + "name": "version_participation_application_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_participation_application_form_image_alt": { + "name": "version_participation_application_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_participation_application_form_image_caption": { + "name": "version_participation_application_form_image_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_participation_application_form_eyebrow": { + "name": "version_participation_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung'" + }, + "version_participation_application_form_heading": { + "name": "version_participation_application_form_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEWERBEN ODER\nVORSCHLAGEN.'" + }, + "version_participation_application_form_description": { + "name": "version_participation_application_form_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie können sich selbst bewerben oder ein herausragendes Unternehmen vorschlagen. Firmenverbunde können sich ebenfalls bewerben. Die Teilnahme ist vollständig kostenfrei.'" + }, + "version_participation_application_form_form_eyebrow": { + "name": "version_participation_application_form_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "version_participation_application_form_upload_cta_label": { + "name": "version_participation_application_form_upload_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF hochladen'" + }, + "version_participation_application_form_upload_cta_url": { + "name": "version_participation_application_form_upload_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "version_participation_application_form_upload_prompt": { + "name": "version_participation_application_form_upload_prompt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie haben Ihre Unterlagen bereits als PDF vorbereitet? Laden Sie sie direkt hoch, statt das Formular auszufüllen.'" + }, + "version_participation_application_form_upload_footer_cta_label": { + "name": "version_participation_application_form_upload_footer_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen →'" + }, + "version_participation_application_form_upload_footer_cta_url": { + "name": "version_participation_application_form_upload_footer_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "version_participation_form_step_complete_label": { + "name": "version_participation_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_participation_form_back_label": { + "name": "version_participation_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_participation_form_next_label": { + "name": "version_participation_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_participation_form_submit_label": { + "name": "version_participation_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "version_participation_form_yes_label": { + "name": "version_participation_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "version_participation_form_no_label": { + "name": "version_participation_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "version_participation_form_required_suffix": { + "name": "version_participation_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "version_participation_form_validation_choose": { + "name": "version_participation_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "version_participation_form_validation_required": { + "name": "version_participation_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_participation_form_validation_invalid_email": { + "name": "version_participation_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_participation_form_type_step_eyebrow": { + "name": "version_participation_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "version_participation_form_type_step_heading": { + "name": "version_participation_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "version_participation_form_type_step_self_title": { + "name": "version_participation_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "version_participation_form_type_step_self_desc": { + "name": "version_participation_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "version_participation_form_type_step_nomination_title": { + "name": "version_participation_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "version_participation_form_type_step_nomination_desc": { + "name": "version_participation_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "version_participation_form_eligibility_allowed_employee_values": { + "name": "version_participation_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "version_participation_form_eligibility_required_bayern_value": { + "name": "version_participation_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "version_participation_form_eligibility_eyebrow": { + "name": "version_participation_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_participation_form_eligibility_heading": { + "name": "version_participation_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "version_participation_form_eligibility_employees_label": { + "name": "version_participation_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "version_participation_form_eligibility_bayern_label": { + "name": "version_participation_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "version_participation_form_eligibility_owner_label": { + "name": "version_participation_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "version_participation_form_eligibility_ineligible_heading": { + "name": "version_participation_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "version_participation_form_eligibility_ineligible_body": { + "name": "version_participation_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "version_participation_form_eligibility_ineligible_contact_prefix": { + "name": "version_participation_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "version_participation_form_eligibility_ineligible_contact_email": { + "name": "version_participation_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "version_participation_form_self_contact_eyebrow": { + "name": "version_participation_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_participation_form_self_contact_heading": { + "name": "version_participation_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "version_participation_form_self_contact_company_label": { + "name": "version_participation_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_participation_form_self_contact_company_placeholder": { + "name": "version_participation_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_participation_form_self_contact_name_label": { + "name": "version_participation_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_participation_form_self_contact_name_placeholder": { + "name": "version_participation_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_participation_form_self_contact_email_label": { + "name": "version_participation_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_participation_form_self_contact_email_placeholder": { + "name": "version_participation_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_participation_form_self_contact_phone_label": { + "name": "version_participation_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "version_participation_form_self_contact_phone_placeholder": { + "name": "version_participation_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "version_participation_form_self_contact_footnote": { + "name": "version_participation_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "version_participation_form_self_summary_eyebrow": { + "name": "version_participation_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_participation_form_self_summary_heading": { + "name": "version_participation_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "version_participation_form_self_summary_company_label": { + "name": "version_participation_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_participation_form_self_summary_employees_label": { + "name": "version_participation_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_participation_form_self_summary_location_label": { + "name": "version_participation_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_participation_form_self_summary_location_prefix": { + "name": "version_participation_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "version_participation_form_self_summary_contact_label": { + "name": "version_participation_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_participation_form_nomination_company_eyebrow": { + "name": "version_participation_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "version_participation_form_nomination_company_heading": { + "name": "version_participation_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "version_participation_form_nomination_company_company_label": { + "name": "version_participation_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_participation_form_nomination_company_company_placeholder": { + "name": "version_participation_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_participation_form_nomination_company_industry_label": { + "name": "version_participation_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_participation_form_nomination_company_industry_placeholder": { + "name": "version_participation_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "version_participation_form_nomination_company_location_label": { + "name": "version_participation_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "version_participation_form_nomination_company_location_placeholder": { + "name": "version_participation_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "version_participation_form_nomination_contact_eyebrow": { + "name": "version_participation_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "version_participation_form_nomination_contact_heading": { + "name": "version_participation_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "version_participation_form_nomination_contact_name_label": { + "name": "version_participation_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_participation_form_nomination_contact_name_placeholder": { + "name": "version_participation_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_participation_form_nomination_contact_email_label": { + "name": "version_participation_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "version_participation_form_nomination_contact_email_placeholder": { + "name": "version_participation_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_participation_form_nomination_contact_relationship_label": { + "name": "version_participation_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "version_participation_form_nomination_contact_relationship_placeholder": { + "name": "version_participation_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "version_participation_form_nomination_contact_footnote": { + "name": "version_participation_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "version_participation_form_nomination_summary_eyebrow": { + "name": "version_participation_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_participation_form_nomination_summary_heading": { + "name": "version_participation_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "version_participation_form_nomination_summary_company_label": { + "name": "version_participation_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_participation_form_nomination_summary_industry_label": { + "name": "version_participation_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_participation_form_nomination_summary_location_label": { + "name": "version_participation_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_participation_form_nomination_summary_nominated_by_label": { + "name": "version_participation_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "version_participation_form_nomination_summary_empty_value": { + "name": "version_participation_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "version_participation_form_success_self_heading": { + "name": "version_participation_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_participation_form_success_nomination_heading": { + "name": "version_participation_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "version_participation_form_success_self_prefix": { + "name": "version_participation_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_participation_form_success_self_middle": { + "name": "version_participation_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "version_participation_form_success_self_suffix": { + "name": "version_participation_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "version_participation_form_success_nomination_prefix": { + "name": "version_participation_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_participation_form_success_nomination_middle": { + "name": "version_participation_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "version_participation_form_success_nomination_suffix": { + "name": "version_participation_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "version_about_hero_background_image_id": { + "name": "version_about_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_hero_image_alt": { + "name": "version_about_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "version_about_hero_eyebrow": { + "name": "version_about_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "version_about_hero_heading": { + "name": "version_about_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WERTE, DIE\nBAYERN BEWEGEN'" + }, + "version_about_hero_highlight": { + "name": "version_about_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERN BEWEGEN'" + }, + "version_about_hero_description": { + "name": "version_about_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Seit 2005 ehrt der BMP herausragende Leistungen im bayerischen Mittelstand. Entdecken Sie die Geschichte, die Vision und die Menschen dahinter.'" + }, + "version_about_hero_primary_cta_label": { + "name": "version_about_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_about_hero_primary_cta_url": { + "name": "version_about_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_about_hero_secondary_cta_label": { + "name": "version_about_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_about_hero_secondary_cta_url": { + "name": "version_about_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_about_prize_image_id": { + "name": "version_about_prize_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_prize_image_alt": { + "name": "version_about_prize_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Preisverleihung'" + }, + "version_about_prize_eyebrow": { + "name": "version_about_prize_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was ist der Preis?'" + }, + "version_about_prize_heading": { + "name": "version_about_prize_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DER BAYERISCHE\nMITTELSTANDSPREIS'" + }, + "version_about_prize_image_label": { + "name": "version_about_prize_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Preisverleihung · München'" + }, + "version_about_mittelstand_image_id": { + "name": "version_about_mittelstand_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_mittelstand_image_alt": { + "name": "version_about_mittelstand_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstand'" + }, + "version_about_mittelstand_eyebrow": { + "name": "version_about_mittelstand_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Relevanz & Zielsetzung'" + }, + "version_about_mittelstand_heading": { + "name": "version_about_mittelstand_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEDEUTUNG FÜR\nDEN MITTELSTAND'" + }, + "version_about_highlights_fallback_image_id": { + "name": "version_about_highlights_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_highlights_eyebrow": { + "name": "version_about_highlights_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger-Highlights'" + }, + "version_about_highlights_heading": { + "name": "version_about_highlights_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSGEZEICHNETE 2025'" + }, + "version_about_highlights_cta_label": { + "name": "version_about_highlights_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_about_highlights_cta_url": { + "name": "version_about_highlights_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_about_highlights_hover_label": { + "name": "version_about_highlights_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "version_about_highlights_fallback_winner_name": { + "name": "version_about_highlights_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_highlights_fallback_winner_category": { + "name": "version_about_highlights_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_highlights_fallback_winner_award_type": { + "name": "version_about_highlights_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_about_highlights_year": { + "name": "version_about_highlights_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 2025 + }, + "version_about_testimonials_eyebrow": { + "name": "version_about_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "version_about_testimonials_heading": { + "name": "version_about_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "version_about_testimonials_desktop_heading": { + "name": "version_about_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "version_about_testimonials_year_prefix": { + "name": "version_about_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_testimonials_previous_label": { + "name": "version_about_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "version_about_testimonials_next_label": { + "name": "version_about_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "version_about_testimonials_slide_label_prefix": { + "name": "version_about_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "version_about_history_eyebrow": { + "name": "version_about_history_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geschichte & Meilensteine'" + }, + "version_about_history_heading": { + "name": "version_about_history_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20 JAHRE\nMITTELSTANDSEXZELLENZ'" + }, + "version_about_history_highlight": { + "name": "version_about_history_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTANDS'" + }, + "version_about_history_watermark": { + "name": "version_about_history_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20'" + }, + "version_about_goals_eyebrow": { + "name": "version_about_goals_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zielsetzung'" + }, + "version_about_goals_heading": { + "name": "version_about_goals_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WOFÜR WIR\nSTEHEN'" + }, + "version_about_values_eyebrow": { + "name": "version_about_values_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorteile & Werte'" + }, + "version_about_values_heading": { + "name": "version_about_values_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM DER\nBMP ZÄHLT'" + }, + "version_about_values_description": { + "name": "version_about_values_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Drei Dimensionen, die den Unterschied machen: für Ihr Unternehmen, Ihre Mitarbeitenden und Ihren Marktauftritt.'" + }, + "version_about_cta_eyebrow": { + "name": "version_about_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Starten Sie Ihre Reise'" + }, + "version_about_cta_heading": { + "name": "version_about_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN AUCH SIE GESCHICHTE'" + }, + "version_about_cta_description": { + "name": "version_about_cta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands. Die Teilnahmegebühr beträgt 0 EUR und die Teilnahme lohnt sich in jeder Phase.'" + }, + "version_about_cta_primary_cta_label": { + "name": "version_about_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_about_cta_primary_cta_url": { + "name": "version_about_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_about_cta_secondary_prefix": { + "name": "version_about_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "version_about_cta_secondary_cta_label": { + "name": "version_about_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_about_cta_secondary_cta_url": { + "name": "version_about_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_impressum_hero_back_label": { + "name": "version_impressum_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_impressum_hero_eyebrow": { + "name": "version_impressum_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "version_impressum_hero_heading": { + "name": "version_impressum_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Impressum'" + }, + "version_impressum_hero_description_html": { + "name": "version_impressum_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Angaben gemäß §5 TMG · Zur Datenschutzerklärung →'" + }, + "version_impressum_navigation_toc_title": { + "name": "version_impressum_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "version_impressum_navigation_side_link_label": { + "name": "version_impressum_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutzerklärung →'" + }, + "version_impressum_navigation_side_link_url": { + "name": "version_impressum_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/datenschutz'" + }, + "version_datenschutz_hero_back_label": { + "name": "version_datenschutz_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_datenschutz_hero_eyebrow": { + "name": "version_datenschutz_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "version_datenschutz_hero_heading": { + "name": "version_datenschutz_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutz­erklärung'" + }, + "version_datenschutz_hero_description_html": { + "name": "version_datenschutz_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zuletzt aktualisiert: April 2026 · Zum Impressum →'" + }, + "version_datenschutz_navigation_toc_title": { + "name": "version_datenschutz_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "version_datenschutz_navigation_side_link_label": { + "name": "version_datenschutz_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Impressum →'" + }, + "version_datenschutz_navigation_side_link_url": { + "name": "version_datenschutz_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/impressum'" + }, + "version_preistraeger_index_hero_image_id": { + "name": "version_preistraeger_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_preistraeger_index_hero_image_url": { + "name": "version_preistraeger_index_hero_image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=2000'" + }, + "version_preistraeger_index_hero_image_alt": { + "name": "version_preistraeger_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung'" + }, + "version_preistraeger_index_breadcrumb_label": { + "name": "version_preistraeger_index_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_preistraeger_index_count_label": { + "name": "version_preistraeger_index_count_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_preistraeger_index_empty_message": { + "name": "version_preistraeger_index_empty_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Preisträger für diese Auswahl.'" + }, + "version_preistraeger_index_card_fallback_image_id": { + "name": "version_preistraeger_index_card_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_preistraeger_index_card_hover_label": { + "name": "version_preistraeger_index_card_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr erfahren'" + }, + "version_preistraeger_index_card_fallback_winner_name": { + "name": "version_preistraeger_index_card_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_preistraeger_index_card_fallback_winner_category": { + "name": "version_preistraeger_index_card_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_preistraeger_index_card_fallback_winner_award_type": { + "name": "version_preistraeger_index_card_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_preistraeger_index_card_fallback_winner_location": { + "name": "version_preistraeger_index_card_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_preistraeger_index_card_fallback_winner_industry": { + "name": "version_preistraeger_index_card_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "version_preistraeger_index_cta_text": { + "name": "version_preistraeger_index_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie der nächste Preisträger.'" + }, + "version_preistraeger_index_cta_primary_cta_label": { + "name": "version_preistraeger_index_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_preistraeger_index_cta_primary_cta_url": { + "name": "version_preistraeger_index_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_preistraeger_index_cta_secondary_prefix": { + "name": "version_preistraeger_index_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Arbeit unterstützen:'" + }, + "version_preistraeger_index_cta_secondary_cta_label": { + "name": "version_preistraeger_index_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_preistraeger_index_cta_secondary_cta_url": { + "name": "version_preistraeger_index_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_press_index_hero_image_id": { + "name": "version_press_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_hero_image_alt": { + "name": "version_press_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse BMP'" + }, + "version_press_index_hero_eyebrow": { + "name": "version_press_index_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse & Newsroom'" + }, + "version_press_index_hero_heading": { + "name": "version_press_index_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS &\nBERICHTERSTATTUNG.'" + }, + "version_press_index_hero_description": { + "name": "version_press_index_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Termine, Pressemitteilungen und Medienmaterial rund um den Bayerischen Mittelstandspreis.'" + }, + "version_press_index_events_eyebrow": { + "name": "version_press_index_events_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termine 2026'" + }, + "version_press_index_events_heading": { + "name": "version_press_index_events_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS RUND UM DEN PREIS.'" + }, + "version_press_index_events_description": { + "name": "version_press_index_events_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Jurysitzung bis zur festlichen Gala – alle Veranstaltungen auf einen Blick.'" + }, + "version_press_index_events_detail_label": { + "name": "version_press_index_events_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "version_press_index_events_default_status_label": { + "name": "version_press_index_events_default_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geplant'" + }, + "version_press_index_events_open_status_label": { + "name": "version_press_index_events_open_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anmeldung offen'" + }, + "version_press_index_events_missing_title_label": { + "name": "version_press_index_events_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_press_index_events_missing_date_label": { + "name": "version_press_index_events_missing_date_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "version_press_index_events_missing_location_label": { + "name": "version_press_index_events_missing_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_press_index_events_missing_category_label": { + "name": "version_press_index_events_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_press_index_events_collection_fallback_image_id": { + "name": "version_press_index_events_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_news_eyebrow": { + "name": "version_press_index_news_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "version_press_index_news_heading": { + "name": "version_press_index_news_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'NACHRICHTEN & EINBLICKE.'" + }, + "version_press_index_news_description": { + "name": "version_press_index_news_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berichte, Hintergründe und Einblicke rund um den bayerischen Mittelstand und den BMP.'" + }, + "version_press_index_news_read_more_label": { + "name": "version_press_index_news_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "version_press_index_news_missing_title_label": { + "name": "version_press_index_news_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_press_index_news_missing_category_label": { + "name": "version_press_index_news_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_press_index_news_collection_fallback_image_id": { + "name": "version_press_index_news_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_downloads_eyebrow": { + "name": "version_press_index_downloads_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt & Material'" + }, + "version_press_index_downloads_heading": { + "name": "version_press_index_downloads_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PRESSE-MATERIAL & KONTAKT.'" + }, + "version_press_index_downloads_description": { + "name": "version_press_index_downloads_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie unser offizielles Material herunter oder kontaktieren Sie direkt unser Presseteam für individuelle Anfragen.'" + }, + "version_press_index_downloads_kit_label": { + "name": "version_press_index_downloads_kit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Download Presse-Kit'" + }, + "version_press_index_downloads_kit_meta": { + "name": "version_press_index_downloads_kit_meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip – 1,5 MB'" + }, + "version_press_index_downloads_kit_file_id": { + "name": "version_press_index_downloads_kit_file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_downloads_kit_url": { + "name": "version_press_index_downloads_kit_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/Print_BMP.zip'" + }, + "version_press_index_downloads_kit_download_name": { + "name": "version_press_index_downloads_kit_download_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip'" + }, + "version_press_index_downloads_contact_eyebrow": { + "name": "version_press_index_downloads_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt'" + }, + "version_press_index_downloads_contact_name": { + "name": "version_press_index_downloads_contact_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Tanja Meier'" + }, + "version_press_index_downloads_contact_lines": { + "name": "version_press_index_downloads_contact_lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'presse@bmp-bayern.de\n+49 89 123 456 99'" + }, + "version_press_index_accreditation_eyebrow": { + "name": "version_press_index_accreditation_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung'" + }, + "version_press_index_accreditation_heading": { + "name": "version_press_index_accreditation_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AKKREDITIERUNG ANFRAGEN.'" + }, + "version_press_index_accreditation_description": { + "name": "version_press_index_accreditation_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Melden Sie sich für unsere Presse-Verteiler an oder fordern Sie eine Akkreditierung für die Gala-Verleihung an.'" + }, + "version_press_index_accreditation_medium_label": { + "name": "version_press_index_accreditation_medium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Medium / Redaktion *'" + }, + "version_press_index_accreditation_name_label": { + "name": "version_press_index_accreditation_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name *'" + }, + "version_press_index_accreditation_email_label": { + "name": "version_press_index_accreditation_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail-Adresse *'" + }, + "version_press_index_accreditation_submit_label": { + "name": "version_press_index_accreditation_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung anfragen'" + }, + "version_press_index_accreditation_success_heading": { + "name": "version_press_index_accreditation_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_press_index_accreditation_success_message": { + "name": "version_press_index_accreditation_success_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank für Ihre Akkreditierungsanfrage. Unser Presseteam meldet sich zeitnah bei Ihnen.'" + }, + "version_form_upload_hero_eyebrow": { + "name": "version_form_upload_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026 – Bewerbungsportal'" + }, + "version_form_upload_hero_heading": { + "name": "version_form_upload_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERLAGEN\nEINREICHEN'" + }, + "version_form_upload_hero_description": { + "name": "version_form_upload_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie Ihre Bewerbungsunterlagen sicher hoch. Alle Einreichungen werden vertraulich behandelt und direkt an die Jury weitergeleitet.'" + }, + "version_form_upload_breadcrumb_label": { + "name": "version_form_upload_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen'" + }, + "version_form_upload_requirements_eyebrow": { + "name": "version_form_upload_requirements_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was wird benötigt?'" + }, + "version_form_upload_requirements_heading": { + "name": "version_form_upload_requirements_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ANFORDERUNGEN & FRISTEN'" + }, + "version_form_upload_upload_eyebrow": { + "name": "version_form_upload_upload_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung'" + }, + "version_form_upload_upload_heading": { + "name": "version_form_upload_upload_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DATEIEN HOCHLADEN'" + }, + "version_form_upload_upload_drop_title": { + "name": "version_form_upload_upload_drop_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dateien hierher ziehen'" + }, + "version_form_upload_upload_drop_description": { + "name": "version_form_upload_upload_drop_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oder klicken zum Auswählen'" + }, + "version_form_upload_upload_accepted_formats": { + "name": "version_form_upload_upload_accepted_formats", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF\nDOCX\nXLSX\nPPT'" + }, + "version_form_upload_upload_file_remove_label": { + "name": "version_form_upload_upload_file_remove_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei entfernen'" + }, + "version_form_upload_upload_note_title": { + "name": "version_form_upload_upload_note_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis'" + }, + "version_form_upload_upload_note": { + "name": "version_form_upload_upload_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stellen Sie sicher, dass alle Pflichtdokumente vollständig sind, bevor Sie einreichen. Unvollständige Bewerbungen können nicht berücksichtigt werden.'" + }, + "version_form_upload_upload_selected_submit_prefix": { + "name": "version_form_upload_upload_selected_submit_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei'" + }, + "version_form_upload_upload_selected_submit_plural_suffix": { + "name": "version_form_upload_upload_selected_submit_plural_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'en'" + }, + "version_form_upload_upload_selected_submit_action": { + "name": "version_form_upload_upload_selected_submit_action", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'einreichen'" + }, + "version_form_upload_upload_empty_submit_label": { + "name": "version_form_upload_upload_empty_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Dateien ausgewählt'" + }, + "version_form_upload_upload_privacy_note": { + "name": "version_form_upload_upload_privacy_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mit der Einreichung stimmen Sie der Verarbeitung Ihrer Daten gemäß unserer Datenschutzerklärung zu.'" + }, + "version_form_upload_success_heading": { + "name": "version_form_upload_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung erfolgreich'" + }, + "version_form_upload_success_description": { + "name": "version_form_upload_success_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Unterlagen wurden übermittelt. Sie erhalten eine Bestätigung per E-Mail. Die Jury meldet sich bis August 2026.'" + }, + "version_form_upload_success_link_label": { + "name": "version_form_upload_success_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "version_form_upload_success_link_url": { + "name": "version_form_upload_success_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_form_upload_cta_eyebrow": { + "name": "version_form_upload_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Noch Fragen zur Einreichung?'" + }, + "version_form_upload_cta_contact_label": { + "name": "version_form_upload_cta_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "version_form_upload_cta_contact_url": { + "name": "version_form_upload_cta_contact_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "version_form_upload_cta_button_label": { + "name": "version_form_upload_cta_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "version_form_upload_cta_button_url": { + "name": "version_form_upload_cta_button_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_netzwerk_hero_image_id": { + "name": "version_netzwerk_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_netzwerk_hero_image_alt": { + "name": "version_netzwerk_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Netzwerk Preisverleihung'" + }, + "version_netzwerk_hero_eyebrow": { + "name": "version_netzwerk_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury & Partner'" + }, + "version_netzwerk_hero_heading": { + "name": "version_netzwerk_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS NETZWERK\nHINTER DEM AWARD.'" + }, + "version_netzwerk_hero_highlight": { + "name": "version_netzwerk_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AWARD.'" + }, + "version_netzwerk_hero_description": { + "name": "version_netzwerk_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis wird getragen von einem starken Netzwerk aus Schirmherrschaft, unabhängiger Fach-Jury und langjährigen Partnern aus Wirtschaft und Gesellschaft.'" + }, + "version_netzwerk_patronage_eyebrow": { + "name": "version_netzwerk_patronage_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Schirmherrschaft'" + }, + "version_netzwerk_patronage_heading": { + "name": "version_netzwerk_patronage_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin und Schirmherr'" + }, + "version_netzwerk_patronage_description": { + "name": "version_netzwerk_patronage_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'des Bayerischen Mittelstandspreises'" + }, + "version_netzwerk_patronage_greeting_eyebrow": { + "name": "version_netzwerk_patronage_greeting_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grußwort'" + }, + "version_netzwerk_patronage_greeting_role": { + "name": "version_netzwerk_patronage_greeting_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin'" + }, + "version_netzwerk_patronage_greeting_name": { + "name": "version_netzwerk_patronage_greeting_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ilse Aigner MdL'" + }, + "version_netzwerk_patronage_greeting_title_line1": { + "name": "version_netzwerk_patronage_greeting_title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Präsidentin des Bayerischen Landtags'" + }, + "version_netzwerk_patronage_greeting_title_line2": { + "name": "version_netzwerk_patronage_greeting_title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerische Staatsministerin für Wirtschaft a.D.'" + }, + "version_netzwerk_patronage_greeting_quote": { + "name": "version_netzwerk_patronage_greeting_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Der Bayerische Mittelstandspreis steht für das, was Bayern stark macht: Unternehmergeist, Verantwortung und Qualität. Mit großer Freude übernehme ich erneut die Schirmherrschaft für diesen bedeutenden Preis.“'" + }, + "version_netzwerk_patronage_greeting_attribution": { + "name": "version_netzwerk_patronage_greeting_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'– Ilse Aigner MdL, Präsidentin des Bayerischen Landtags'" + }, + "version_netzwerk_jury_intro_eyebrow": { + "name": "version_netzwerk_jury_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wer entscheidet?'" + }, + "version_netzwerk_jury_intro_heading": { + "name": "version_netzwerk_jury_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNABHÄNGIGE EXPERTISE FÜR DEN MITTELSTAND.'" + }, + "version_netzwerk_jury_intro_description": { + "name": "version_netzwerk_jury_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises besteht ausschließlich aus ehrenamtlich tätigen Expertinnen und Experten. Kein Mitglied steht in wirtschaftlicher Verbindung zu einem Bewerber – Transparenz und Unparteilichkeit sind die Grundpfeiler unseres Verfahrens.'" + }, + "version_netzwerk_jury_eyebrow": { + "name": "version_netzwerk_jury_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Gremium'" + }, + "version_netzwerk_jury_heading": { + "name": "version_netzwerk_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNSERE JURY 2026'" + }, + "version_netzwerk_jury_description": { + "name": "version_netzwerk_jury_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unabhängige Expertinnen und Experten aus Wirtschaft, Wissenschaft und Verbänden, für einen vollständig unabhängigen Bewertungsprozess.'" + }, + "version_netzwerk_jury_chair_badge": { + "name": "version_netzwerk_jury_chair_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury-Vorsitz'" + }, + "version_netzwerk_jury_note": { + "name": "version_netzwerk_jury_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis: Einzelne Persönlichkeiten engagieren sich sowohl in der Jury als auch als Partner des BMP – beide Rollen werden auf dieser Seite getrennt ausgewiesen.'" + }, + "version_netzwerk_expertise_eyebrow": { + "name": "version_netzwerk_expertise_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hintergrund & Expertise'" + }, + "version_netzwerk_expertise_heading": { + "name": "version_netzwerk_expertise_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIE BEWERTET DIE JURY?'" + }, + "version_netzwerk_expertise_quote": { + "name": "version_netzwerk_expertise_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des BMP ist vollständig von wirtschaftlichen Interessen unabhängig. Jede Entscheidung wird transparent nachvollzogen – das ist unser Versprechen an die Unternehmen Bayerns.'" + }, + "version_netzwerk_expertise_quote_attribution": { + "name": "version_netzwerk_expertise_quote_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Prof. Dr. Klaus Bergmann, Juryvorsitzender'" + }, + "version_netzwerk_partners_eyebrow": { + "name": "version_netzwerk_partners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netzwerkqualität'" + }, + "version_netzwerk_partners_heading": { + "name": "version_netzwerk_partners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PARTNER & SPONSOREN'" + }, + "version_netzwerk_partners_description": { + "name": "version_netzwerk_partners_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Partner in drei Kategorien: Hauptsponsoren, Medienpartner und weitere Sponsoren. Klicken für Details.'" + }, + "version_netzwerk_partners_detail_label": { + "name": "version_netzwerk_partners_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "version_netzwerk_partners_premium_label": { + "name": "version_netzwerk_partners_premium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Premium'" + }, + "version_netzwerk_partners_default_logo_color": { + "name": "version_netzwerk_partners_default_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#111D55'" + }, + "version_netzwerk_partners_modal_industry_label": { + "name": "version_netzwerk_partners_modal_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_netzwerk_partners_modal_location_label": { + "name": "version_netzwerk_partners_modal_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_netzwerk_partners_modal_web_label": { + "name": "version_netzwerk_partners_modal_web_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Web'" + }, + "version_netzwerk_partners_modal_about_label": { + "name": "version_netzwerk_partners_modal_about_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "version_netzwerk_partners_modal_website_label": { + "name": "version_netzwerk_partners_modal_website_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen'" + }, + "version_netzwerk_partners_modal_close_label": { + "name": "version_netzwerk_partners_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "version_netzwerk_partners_modal_footer_title": { + "name": "version_netzwerk_partners_modal_footer_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis 2026'" + }, + "version_netzwerk_partners_modal_footer_role_prefix": { + "name": "version_netzwerk_partners_modal_footer_role_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Offizieller'" + }, + "version_netzwerk_sponsoring_eyebrow": { + "name": "version_netzwerk_sponsoring_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wachstum durch Partnerschaft'" + }, + "version_netzwerk_sponsoring_heading": { + "name": "version_netzwerk_sponsoring_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIR FREUEN UNS ÜBER NEUE SPONSOREN.'" + }, + "version_netzwerk_sponsoring_description": { + "name": "version_netzwerk_sponsoring_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Positionieren Sie Ihre Marke im exklusivsten Netzwerk des bayerischen Mittelstands – mit maßgeschneiderten Sponsoring-Paketen.'" + }, + "version_netzwerk_sponsoring_image_id": { + "name": "version_netzwerk_sponsoring_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_netzwerk_sponsoring_image_alt": { + "name": "version_netzwerk_sponsoring_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "version_netzwerk_sponsoring_image_label": { + "name": "version_netzwerk_sponsoring_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "version_netzwerk_sponsoring_form_eyebrow": { + "name": "version_netzwerk_sponsoring_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sponsoring 2026'" + }, + "version_netzwerk_sponsoring_footnote_prefix": { + "name": "version_netzwerk_sponsoring_footnote_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "version_netzwerk_sponsoring_footnote_label": { + "name": "version_netzwerk_sponsoring_footnote_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_netzwerk_sponsoring_footnote_url": { + "name": "version_netzwerk_sponsoring_footnote_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_netzwerk_sponsoring_form_step1_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step1_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1 – Paket wählen'" + }, + "version_netzwerk_sponsoring_form_step1_heading": { + "name": "version_netzwerk_sponsoring_form_step1_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Interesse an'" + }, + "version_netzwerk_sponsoring_form_step2_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step2_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 2 – Unternehmen'" + }, + "version_netzwerk_sponsoring_form_step2_heading": { + "name": "version_netzwerk_sponsoring_form_step2_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Unternehmen'" + }, + "version_netzwerk_sponsoring_form_company_label": { + "name": "version_netzwerk_sponsoring_form_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen *'" + }, + "version_netzwerk_sponsoring_form_company_placeholder": { + "name": "version_netzwerk_sponsoring_form_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_netzwerk_sponsoring_form_industry_label": { + "name": "version_netzwerk_sponsoring_form_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_netzwerk_sponsoring_form_industry_placeholder": { + "name": "version_netzwerk_sponsoring_form_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Finanzdienstleistungen'" + }, + "version_netzwerk_sponsoring_form_step3_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step3_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 3 – Kontakt'" + }, + "version_netzwerk_sponsoring_form_step3_heading": { + "name": "version_netzwerk_sponsoring_form_step3_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner'" + }, + "version_netzwerk_sponsoring_form_contact_label": { + "name": "version_netzwerk_sponsoring_form_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner *'" + }, + "version_netzwerk_sponsoring_form_contact_placeholder": { + "name": "version_netzwerk_sponsoring_form_contact_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_netzwerk_sponsoring_form_email_label": { + "name": "version_netzwerk_sponsoring_form_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail *'" + }, + "version_netzwerk_sponsoring_form_email_placeholder": { + "name": "version_netzwerk_sponsoring_form_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_netzwerk_sponsoring_form_back_label": { + "name": "version_netzwerk_sponsoring_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_netzwerk_sponsoring_form_next_label": { + "name": "version_netzwerk_sponsoring_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_netzwerk_sponsoring_form_submit_label": { + "name": "version_netzwerk_sponsoring_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Exposé anfordern'" + }, + "version_netzwerk_sponsoring_form_required_package_error": { + "name": "version_netzwerk_sponsoring_form_required_package_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen Sie ein Paket.'" + }, + "version_netzwerk_sponsoring_form_required_field_error": { + "name": "version_netzwerk_sponsoring_form_required_field_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_netzwerk_sponsoring_form_invalid_email_error": { + "name": "version_netzwerk_sponsoring_form_invalid_email_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_netzwerk_sponsoring_form_done_label": { + "name": "version_netzwerk_sponsoring_form_done_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_netzwerk_sponsoring_form_success_heading": { + "name": "version_netzwerk_sponsoring_form_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_netzwerk_sponsoring_form_success_message_prefix": { + "name": "version_netzwerk_sponsoring_form_success_message_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank,'" + }, + "version_netzwerk_sponsoring_form_success_message_suffix": { + "name": "version_netzwerk_sponsoring_form_success_message_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen unser Sponsoring-Exposé innerhalb von 48 Stunden zu.'" + }, + "version_netzwerk_sponsoring_form_footer_text": { + "name": "version_netzwerk_sponsoring_form_footer_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns innerhalb von 48 Stunden.'" + }, + "version_mitglied_werden_header_brand_label": { + "name": "version_mitglied_werden_header_brand_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026'" + }, + "version_mitglied_werden_header_back_label": { + "name": "version_mitglied_werden_header_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_mitglied_werden_header_back_url": { + "name": "version_mitglied_werden_header_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/'" + }, + "version_mitglied_werden_hero_image_id": { + "name": "version_mitglied_werden_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_mitglied_werden_hero_image_alt": { + "name": "version_mitglied_werden_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitgliedschaft'" + }, + "version_mitglied_werden_hero_eyebrow": { + "name": "version_mitglied_werden_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitgliedschaft'" + }, + "version_mitglied_werden_hero_heading": { + "name": "version_mitglied_werden_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DEIN WEG ZU UNS.'" + }, + "version_mitglied_werden_hero_description": { + "name": "version_mitglied_werden_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis lebt vom Engagement seiner Mitglieder.\nEine Mitgliedschaft ist Unterstützung, damit der Preis weiterhin unabhängig\nund kostenlos umgesetzt werden kann.'" + }, + "version_mitglied_werden_benefits_eyebrow": { + "name": "version_mitglied_werden_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Deine Vorteile'" + }, + "version_mitglied_werden_benefits_heading": { + "name": "version_mitglied_werden_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS DU GEWINNST.'" + }, + "version_mitglied_werden_about_eyebrow": { + "name": "version_mitglied_werden_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Verein'" + }, + "version_mitglied_werden_about_heading": { + "name": "version_mitglied_werden_about_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER WIR SIND.'" + }, + "version_mitglied_werden_about_descriptor": { + "name": "version_mitglied_werden_about_descriptor", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis e.V., eingetragener gemeinnütziger Verein'" + }, + "version_mitglied_werden_pricing_eyebrow": { + "name": "version_mitglied_werden_pricing_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitgliedsbeitrag'" + }, + "version_mitglied_werden_pricing_heading": { + "name": "version_mitglied_werden_pricing_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR BEITRAG.'" + }, + "version_mitglied_werden_pricing_employee_label": { + "name": "version_mitglied_werden_pricing_employee_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anzahl Mitarbeiter wählen'" + }, + "version_mitglied_werden_pricing_select_placeholder": { + "name": "version_mitglied_werden_pricing_select_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen…'" + }, + "version_mitglied_werden_pricing_option_suffix": { + "name": "version_mitglied_werden_pricing_option_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_mitglied_werden_pricing_result_eyebrow": { + "name": "version_mitglied_werden_pricing_result_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Beitragsübersicht'" + }, + "version_mitglied_werden_pricing_annual_net_label": { + "name": "version_mitglied_werden_pricing_annual_net_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (netto)'" + }, + "version_mitglied_werden_pricing_annual_gross_label": { + "name": "version_mitglied_werden_pricing_annual_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (19 % MwSt.)'" + }, + "version_mitglied_werden_pricing_annual_gross_short_label": { + "name": "version_mitglied_werden_pricing_annual_gross_short_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (brutto)'" + }, + "version_mitglied_werden_pricing_admission_gross_label": { + "name": "version_mitglied_werden_pricing_admission_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aufnahmegebühr (brutto)'" + }, + "version_mitglied_werden_pricing_total_year_one_label": { + "name": "version_mitglied_werden_pricing_total_year_one_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gesamt Jahr 1 (anteilig)'" + }, + "version_mitglied_werden_pricing_footnote": { + "name": "version_mitglied_werden_pricing_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'* Anteilig ab nächstem Monatsersten bis 31.12. des laufenden Jahres. Ab dem Folgejahr gilt der volle Jahresbeitrag.'" + }, + "version_mitglied_werden_pricing_cta_label": { + "name": "version_mitglied_werden_pricing_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden →'" + }, + "version_mitglied_werden_pricing_cta_href": { + "name": "version_mitglied_werden_pricing_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "version_mitglied_werden_pricing_table_toggle_label": { + "name": "version_mitglied_werden_pricing_table_toggle_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vollständige Beitragsstaffel'" + }, + "version_mitglied_werden_pricing_table_employee_header": { + "name": "version_mitglied_werden_pricing_table_employee_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_mitglied_werden_pricing_table_net_header": { + "name": "version_mitglied_werden_pricing_table_net_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netto / Jahr'" + }, + "version_mitglied_werden_pricing_table_gross_header": { + "name": "version_mitglied_werden_pricing_table_gross_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Brutto / Jahr'" + }, + "version_mitglied_werden_pricing_table_note_prefix": { + "name": "version_mitglied_werden_pricing_table_note_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zzgl. einmalige Aufnahmegebühr'" + }, + "version_mitglied_werden_pricing_table_note_suffix": { + "name": "version_mitglied_werden_pricing_table_note_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'(brutto) im ersten Jahr. Alle Angaben inkl. 19 % MwSt.'" + }, + "version_mitglied_werden_pricing_vat_rate": { + "name": "version_mitglied_werden_pricing_vat_rate", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0.19 + }, + "version_mitglied_werden_pricing_admission_fee_net": { + "name": "version_mitglied_werden_pricing_admission_fee_net", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 500 + }, + "version_mitglied_werden_form_intro_eyebrow": { + "name": "version_mitglied_werden_form_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt beitreten'" + }, + "version_mitglied_werden_form_intro_heading": { + "name": "version_mitglied_werden_form_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DU BIST DABEI.'" + }, + "version_mitglied_werden_form_intro_description": { + "name": "version_mitglied_werden_form_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fülle das Formular aus und wir melden uns innerhalb von 48 Stunden bei dir.\nDie Mitgliedschaft beginnt mit Bestätigung durch den Vorstand.'" + }, + "version_mitglied_werden_form_intro_image_id": { + "name": "version_mitglied_werden_form_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_mitglied_werden_form_intro_image_alt": { + "name": "version_mitglied_werden_form_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder'" + }, + "version_mitglied_werden_form_intro_image_label": { + "name": "version_mitglied_werden_form_intro_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder 2025'" + }, + "version_mitglied_werden_wizard": { + "name": "version_mitglied_werden_wizard", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"requiredSuffix\":\"*\",\"optionalSuffix\":\"(optional)\",\"stepCounterTemplate\":\"Schritt {step} von {total}\",\"reviewFallback\":\"–\",\"nav\":{\"backLabel\":\"← Zurück\",\"nextLabel\":\"Weiter →\",\"submitLabel\":\"Mitgliedschaftsantrag verbindlich einreichen\"},\"steps\":[{\"id\":1,\"label\":\"Unternehmen\"},{\"id\":2,\"label\":\"Kontakt\"},{\"id\":3,\"label\":\"Details\"},{\"id\":4,\"label\":\"Zahlung\"},{\"id\":5,\"label\":\"Abschluss\"}],\"validation\":{\"required\":\"Pflichtfeld\",\"select\":\"Bitte wählen\",\"postalCode\":\"5-stellige PLZ erforderlich\",\"email\":\"Gültige E-Mail erforderlich\",\"iban\":\"Ungültige IBAN (DE, 22 Zeichen)\",\"sepa\":\"Bitte SEPA-Mandat bestätigen\"},\"tiers\":[{\"max\":10,\"label\":\"bis 10\",\"annual\":480},{\"max\":20,\"label\":\"bis 20\",\"annual\":600},{\"max\":50,\"label\":\"bis 50\",\"annual\":900},{\"max\":100,\"label\":\"bis 100\",\"annual\":1200},{\"max\":250,\"label\":\"bis 250\",\"annual\":2400},{\"max\":1000,\"label\":\"bis 1.000\",\"annual\":3600}],\"vatRate\":0.19,\"admissionFeeNet\":500,\"pricingSummary\":{\"eyebrow\":\"Beitragsübersicht\",\"annualNetLabel\":\"Jahresbeitrag (netto)\",\"annualGrossLabel\":\"Jahresbeitrag (brutto)\",\"admissionGrossLabel\":\"Aufnahmegebühr (brutto)\",\"totalYearOneLabel\":\"Gesamt Jahr 1 (anteilig)\"},\"fields\":{\"company\":{\"title\":\"Ihr Unternehmen\",\"subtitle\":\"Angaben zum antragstellenden Unternehmen\",\"legalForms\":[\"GmbH\",\"GmbH & Co. KG\",\"AG\",\"UG\",\"KG\",\"OHG\",\"GbR\",\"Einzelunternehmen\",\"e.K.\",\"Sonstige\"],\"companyNameLabel\":\"Firmenname\",\"companyNamePlaceholder\":\"Muster GmbH\",\"legalFormLabel\":\"Rechtsform\",\"employeesLabel\":\"Anzahl Mitarbeiter\",\"streetLabel\":\"Straße & Hausnummer\",\"streetPlaceholder\":\"Musterstraße 42\",\"postalCodeLabel\":\"PLZ\",\"postalCodePlaceholder\":\"12345\",\"cityLabel\":\"Ort\",\"cityPlaceholder\":\"Berlin\",\"websiteLabel\":\"Website\",\"websitePlaceholder\":\"https://www.ihrewebsite.de\"},\"contact\":{\"title\":\"Kontaktperson\",\"subtitle\":\"Ansprechpartner für die Mitgliedschaft\",\"salutations\":[\"Herr\",\"Frau\",\"Divers\"],\"salutationLabel\":\"Anrede\",\"firstNameLabel\":\"Vorname\",\"firstNamePlaceholder\":\"Max\",\"lastNameLabel\":\"Nachname\",\"lastNamePlaceholder\":\"Mustermann\",\"positionLabel\":\"Position / Funktion\",\"positionPlaceholder\":\"z. B. Geschäftsführer\",\"emailLabel\":\"E-Mail-Adresse\",\"emailPlaceholder\":\"max@muster.de\",\"phoneLabel\":\"Telefon\",\"phonePlaceholder\":\"+49 30 123456\"},\"details\":{\"title\":\"Mitgliedschaft & Details\",\"subtitle\":\"Beitragsübersicht und Eintrittsdatum\",\"entryDateLabel\":\"Gewünschtes Eintrittsdatum\",\"referralLabel\":\"Wie wurden Sie aufmerksam?\",\"referralOptions\":[\"Empfehlung\",\"Veranstaltung\",\"Google\",\"Social Media\",\"Presse\",\"Sonstiges\"],\"motivationLabel\":\"Ihre Motivation (optional)\",\"motivationPlaceholder\":\"Was erhoffen Sie sich von der Mitgliedschaft beim BMP e.V.?\",\"motivationMaxLength\":500},\"payment\":{\"title\":\"SEPA-Lastschriftmandat\",\"subtitle\":\"Bankverbindung für den Beitragseinzug\",\"mandateText\":\"Ich ermächtige den BMP e.V., Zahlungen von meinem Konto mittels Lastschrift einzuziehen. Zugleich weise ich mein Kreditinstitut an, die vom BMP e.V. auf mein Konto gezogenen Lastschriften einzulösen. Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des belasteten Betrages verlangen. Es gelten dabei die mit meinem Kreditinstitut vereinbarten Bedingungen. Die Mandatsreferenz wird separat mitgeteilt. Gläubiger-Identifikationsnummer: DE98ZZZ09999999999.\",\"accountHolderLabel\":\"Kontoinhaber\",\"accountHolderPlaceholder\":\"Max Mustermann\",\"ibanLabel\":\"IBAN\",\"ibanPlaceholder\":\"DE00 0000 0000 0000 0000 00\",\"ibanValidLabel\":\"✓ OK\",\"ibanPendingLabel\":\"…\",\"bicLabel\":\"BIC\",\"bicPlaceholder\":\"BELADEBEXXX\",\"bicAutoPlaceholder\":\"Wird ausgefüllt\",\"bankLabel\":\"Bank / Kreditinstitut\",\"bankPlaceholder\":\"Berliner Sparkasse\",\"sepaCheckboxLabel\":\"Ich bestätige das SEPA-Lastschriftmandat und ermächtige den BMP e.V. zum Einzug.\"},\"summary\":{\"title\":\"Zusammenfassung & Abschluss\",\"subtitle\":\"Bitte prüfen Sie Ihre Angaben\",\"companyAccordion\":\"Unternehmen\",\"contactAccordion\":\"Kontaktperson\",\"paymentAccordion\":\"Zahlung\",\"requiredTitle\":\"Pflichtbestätigungen\",\"optionalTitle\":\"Optional\",\"labels\":{\"companyName\":\"Firmenname\",\"legalForm\":\"Rechtsform\",\"address\":\"Adresse\",\"employees\":\"Mitarbeiter\",\"website\":\"Website\",\"name\":\"Name\",\"position\":\"Position\",\"email\":\"E-Mail\",\"phone\":\"Telefon\",\"accountHolder\":\"Kontoinhaber\",\"iban\":\"IBAN\",\"bic\":\"BIC\",\"bank\":\"Bank\",\"entryDate\":\"Eintrittsdatum\",\"annualContribution\":\"Jahresbeitrag\"},\"consents\":{\"satzung\":\"Ich habe die Satzung des BMP e.V. gelesen und erkenne sie an.\",\"datenschutz\":\"Ich habe die Datenschutzerklärung gelesen und stimme zu.\",\"widerruf\":\"Ich habe die Kündigungsfrist zur Kenntnis genommen (1 Jahr zum Jahresende).\",\"newsletter\":\"Ich möchte elektronische Informationen, Einladungen und den Newsletter erhalten.\",\"websitePub\":\"Meinen Firmennamen auf der Website des BMP e.V. als Mitglied veröffentlichen.\"}}},\"success\":{\"heading\":\"Ihr Antrag ist eingegangen.\",\"message\":\"Wir melden uns innerhalb von 5 Werktagen bei Ihnen.\",\"nextStepsTitle\":\"Ihre nächsten Schritte\",\"steps\":[{\"num\":\"1\",\"title\":\"Bestätigung per E-Mail\",\"desc\":\"Sie erhalten in Kürze eine Eingangsbestätigung.\"},{\"num\":\"2\",\"title\":\"Prüfung durch den Vorstand\",\"desc\":\"Ihr Antrag wird in der nächsten Sitzung behandelt.\"},{\"num\":\"3\",\"title\":\"Willkommen im BMP e.V.\",\"desc\":\"Nach Bestätigung erhalten Sie Ihre Mitgliedsdaten.\"}]}}'" + }, + "version_mitglied_werden_testimonials_eyebrow": { + "name": "version_mitglied_werden_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Mitglieder'" + }, + "version_mitglied_werden_testimonials_heading": { + "name": "version_mitglied_werden_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS MITGLIEDER SAGEN.'" + }, + "version_mitglied_werden_faq_eyebrow": { + "name": "version_mitglied_werden_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige Fragen'" + }, + "version_mitglied_werden_faq_heading": { + "name": "version_mitglied_werden_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'FAQ.'" + }, + "version_mitglied_werden_bottom_cta_eyebrow": { + "name": "version_mitglied_werden_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werde Teil des BMP'" + }, + "version_mitglied_werden_bottom_cta_heading": { + "name": "version_mitglied_werden_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERSTÜTZE. NETZWERKE. WIRKE.'" + }, + "version_mitglied_werden_bottom_cta_cta_label": { + "name": "version_mitglied_werden_bottom_cta_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden'" + }, + "version_mitglied_werden_bottom_cta_cta_href": { + "name": "version_mitglied_werden_bottom_cta_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_image_id": { + "name": "version_meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_parent_idx": { + "name": "_pages_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_pages_v_version_hero_version_hero_media_idx": { + "name": "_pages_v_version_hero_version_hero_media_idx", + "columns": [ + "version_hero_media_id" + ], + "isUnique": false + }, + "_pages_v_version_home_hero_version_home_hero_background__idx": { + "name": "_pages_v_version_home_hero_version_home_hero_background__idx", + "columns": [ + "version_home_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_quick_check_version_home_quick_che_idx": { + "name": "_pages_v_version_home_quick_check_version_home_quick_che_idx", + "columns": [ + "version_home_quick_check_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_intro_version_home_intro_image_idx": { + "name": "_pages_v_version_home_intro_version_home_intro_image_idx", + "columns": [ + "version_home_intro_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_winners_version_home_winners_fallb_idx": { + "name": "_pages_v_version_home_winners_version_home_winners_fallb_idx", + "columns": [ + "version_home_winners_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_benefits_version_home_benefits_ima_idx": { + "name": "_pages_v_version_home_benefits_version_home_benefits_ima_idx", + "columns": [ + "version_home_benefits_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_application_version_home_applicati_idx": { + "name": "_pages_v_version_home_application_version_home_applicati_idx", + "columns": [ + "version_home_application_award_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_video_modal_version_home_video_mod_idx": { + "name": "_pages_v_version_home_video_modal_version_home_video_mod_idx", + "columns": [ + "version_home_video_modal_video_id" + ], + "isUnique": false + }, + "_pages_v_version_contact_hero_version_contact_hero_backg_idx": { + "name": "_pages_v_version_contact_hero_version_contact_hero_backg_idx", + "columns": [ + "version_contact_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_version_contact_info_form__idx": { + "name": "_pages_v_version_contact_info_version_contact_info_form__idx", + "columns": [ + "version_contact_info_form_image_id" + ], + "isUnique": false + }, + "_pages_v_version_participation_hero_version_participatio_idx": { + "name": "_pages_v_version_participation_hero_version_participatio_idx", + "columns": [ + "version_participation_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_participation_application_form_version__idx": { + "name": "_pages_v_version_participation_application_form_version__idx", + "columns": [ + "version_participation_application_form_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_hero_version_about_hero_backgroun_idx": { + "name": "_pages_v_version_about_hero_version_about_hero_backgroun_idx", + "columns": [ + "version_about_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_prize_version_about_prize_image_idx": { + "name": "_pages_v_version_about_prize_version_about_prize_image_idx", + "columns": [ + "version_about_prize_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_mittelstand_version_about_mittels_idx": { + "name": "_pages_v_version_about_mittelstand_version_about_mittels_idx", + "columns": [ + "version_about_mittelstand_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_highlights_version_about_highligh_idx": { + "name": "_pages_v_version_about_highlights_version_about_highligh_idx", + "columns": [ + "version_about_highlights_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_preistraeger_index_hero_version_preistr_idx": { + "name": "_pages_v_version_preistraeger_index_hero_version_preistr_idx", + "columns": [ + "version_preistraeger_index_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_preistraeger_index_card_version_preistr_idx": { + "name": "_pages_v_version_preistraeger_index_card_version_preistr_idx", + "columns": [ + "version_preistraeger_index_card_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_hero_version_press_index_he_idx": { + "name": "_pages_v_version_press_index_hero_version_press_index_he_idx", + "columns": [ + "version_press_index_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_events_version_press_index__idx": { + "name": "_pages_v_version_press_index_events_version_press_index__idx", + "columns": [ + "version_press_index_events_collection_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_news_version_press_index_ne_idx": { + "name": "_pages_v_version_press_index_news_version_press_index_ne_idx", + "columns": [ + "version_press_index_news_collection_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_downloads_version_press_ind_idx": { + "name": "_pages_v_version_press_index_downloads_version_press_ind_idx", + "columns": [ + "version_press_index_downloads_kit_file_id" + ], + "isUnique": false + }, + "_pages_v_version_netzwerk_hero_version_netzwerk_hero_ima_idx": { + "name": "_pages_v_version_netzwerk_hero_version_netzwerk_hero_ima_idx", + "columns": [ + "version_netzwerk_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_netzwerk_sponsoring_version_netzwerk_sp_idx": { + "name": "_pages_v_version_netzwerk_sponsoring_version_netzwerk_sp_idx", + "columns": [ + "version_netzwerk_sponsoring_image_id" + ], + "isUnique": false + }, + "_pages_v_version_mitglied_werden_hero_version_mitglied_w_idx": { + "name": "_pages_v_version_mitglied_werden_hero_version_mitglied_w_idx", + "columns": [ + "version_mitglied_werden_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_mitglied_werden_form_intro_version_mitg_idx": { + "name": "_pages_v_version_mitglied_werden_form_intro_version_mitg_idx", + "columns": [ + "version_mitglied_werden_form_intro_image_id" + ], + "isUnique": false + }, + "_pages_v_version_meta_version_meta_image_idx": { + "name": "_pages_v_version_meta_version_meta_image_idx", + "columns": [ + "version_meta_image_id" + ], + "isUnique": false + }, + "_pages_v_version_version_spa_path_idx": { + "name": "_pages_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_pages_v_version_version_slug_idx": { + "name": "_pages_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_pages_v_version_version_updated_at_idx": { + "name": "_pages_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_pages_v_version_version_created_at_idx": { + "name": "_pages_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_pages_v_version_version__status_idx": { + "name": "_pages_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_pages_v_created_at_idx": { + "name": "_pages_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_pages_v_updated_at_idx": { + "name": "_pages_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_pages_v_latest_idx": { + "name": "_pages_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_pages_v_autosave_idx": { + "name": "_pages_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_parent_id_pages_id_fk": { + "name": "_pages_v_parent_id_pages_id_fk", + "tableFrom": "_pages_v", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_hero_media_id_media_id_fk": { + "name": "_pages_v_version_hero_media_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_hero_media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_home_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_quick_check_image_id_media_id_fk": { + "name": "_pages_v_version_home_quick_check_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_quick_check_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_intro_image_id_media_id_fk": { + "name": "_pages_v_version_home_intro_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_winners_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_home_winners_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_winners_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_benefits_image_id_media_id_fk": { + "name": "_pages_v_version_home_benefits_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_benefits_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_application_award_image_id_media_id_fk": { + "name": "_pages_v_version_home_application_award_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_application_award_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_video_modal_video_id_media_id_fk": { + "name": "_pages_v_version_home_video_modal_video_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_video_modal_video_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_contact_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_contact_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_contact_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_contact_info_form_image_id_media_id_fk": { + "name": "_pages_v_version_contact_info_form_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_contact_info_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_participation_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_participation_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_participation_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_participation_application_form_image_id_media_id_fk": { + "name": "_pages_v_version_participation_application_form_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_participation_application_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_about_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_prize_image_id_media_id_fk": { + "name": "_pages_v_version_about_prize_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_prize_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_mittelstand_image_id_media_id_fk": { + "name": "_pages_v_version_about_mittelstand_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_mittelstand_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_highlights_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_about_highlights_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_highlights_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_preistraeger_index_hero_image_id_media_id_fk": { + "name": "_pages_v_version_preistraeger_index_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_preistraeger_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_preistraeger_index_card_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_preistraeger_index_card_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_preistraeger_index_card_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_hero_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_events_collection_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_events_collection_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_events_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_news_collection_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_news_collection_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_news_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_downloads_kit_file_id_media_id_fk": { + "name": "_pages_v_version_press_index_downloads_kit_file_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_downloads_kit_file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_netzwerk_hero_image_id_media_id_fk": { + "name": "_pages_v_version_netzwerk_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_netzwerk_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_netzwerk_sponsoring_image_id_media_id_fk": { + "name": "_pages_v_version_netzwerk_sponsoring_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_netzwerk_sponsoring_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_mitglied_werden_hero_image_id_media_id_fk": { + "name": "_pages_v_version_mitglied_werden_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_mitglied_werden_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_mitglied_werden_form_intro_image_id_media_id_fk": { + "name": "_pages_v_version_mitglied_werden_form_intro_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_mitglied_werden_form_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_meta_image_id_media_id_fk": { + "name": "_pages_v_version_meta_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_rels": { + "name": "_pages_v_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_rels_order_idx": { + "name": "_pages_v_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "_pages_v_rels_parent_idx": { + "name": "_pages_v_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_pages_v_rels_path_idx": { + "name": "_pages_v_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "_pages_v_rels_pages_id_idx": { + "name": "_pages_v_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "_pages_v_rels_posts_id_idx": { + "name": "_pages_v_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "_pages_v_rels_categories_id_idx": { + "name": "_pages_v_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "_pages_v_rels_preistraeger_id_idx": { + "name": "_pages_v_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_rels_parent_fk": { + "name": "_pages_v_rels_parent_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "_pages_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_pages_fk": { + "name": "_pages_v_rels_pages_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_posts_fk": { + "name": "_pages_v_rels_posts_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_categories_fk": { + "name": "_pages_v_rels_categories_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_preistraeger_fk": { + "name": "_pages_v_rels_preistraeger_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_sections": { + "name": "posts_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "heading": { + "name": "heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_sections_order_idx": { + "name": "posts_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_sections_parent_id_idx": { + "name": "posts_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_sections_parent_id_fk": { + "name": "posts_sections_parent_id_fk", + "tableFrom": "posts_sections", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_tags": { + "name": "posts_tags", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_tags_order_idx": { + "name": "posts_tags_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_tags_parent_id_idx": { + "name": "posts_tags_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_tags_parent_id_fk": { + "name": "posts_tags_parent_id_fk", + "tableFrom": "posts_tags", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_related_slugs": { + "name": "posts_related_slugs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_related_slugs_order_idx": { + "name": "posts_related_slugs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_related_slugs_parent_id_idx": { + "name": "posts_related_slugs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_related_slugs_parent_id_fk": { + "name": "posts_related_slugs_parent_id_fk", + "tableFrom": "posts_related_slugs", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_populated_authors": { + "name": "posts_populated_authors", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_populated_authors_order_idx": { + "name": "posts_populated_authors_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_populated_authors_parent_id_idx": { + "name": "posts_populated_authors_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_populated_authors_parent_id_fk": { + "name": "posts_populated_authors_parent_id_fk", + "tableFrom": "posts_populated_authors", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts": { + "name": "posts", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_image_id": { + "name": "hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "author_name": { + "name": "author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "author_role": { + "name": "author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "read_time": { + "name": "read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_not_found_title": { + "name": "detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel nicht gefunden'" + }, + "detail_page_not_found_back_label": { + "name": "detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse'" + }, + "detail_page_not_found_back_url": { + "name": "detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_hero_back_link_label": { + "name": "detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "detail_page_hero_back_link_url": { + "name": "detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_fallback_article_title": { + "name": "detail_page_fallback_article_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_category": { + "name": "detail_page_fallback_article_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_date": { + "name": "detail_page_fallback_article_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aktuell'" + }, + "detail_page_fallback_article_author_name": { + "name": "detail_page_fallback_article_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Redaktion'" + }, + "detail_page_fallback_article_author_role": { + "name": "detail_page_fallback_article_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_read_time": { + "name": "detail_page_fallback_article_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'1 min'" + }, + "detail_page_fallback_article_excerpt": { + "name": "detail_page_fallback_article_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Pressebeitrag wird aus Payload CMS geladen.'" + }, + "detail_page_fallback_article_tag": { + "name": "detail_page_fallback_article_tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_category_colors": { + "name": "detail_page_category_colors", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"Auszeichnung\":\"#111D55\",\"Innovation\":\"#2563EB\",\"Engagement\":\"#16A34A\",\"Wirtschaft\":\"#9333EA\"}'" + }, + "detail_page_meta_copy_read_time_suffix": { + "name": "detail_page_meta_copy_read_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Lesezeit'" + }, + "detail_page_sidebar_cta_heading": { + "name": "detail_page_sidebar_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "detail_page_sidebar_cta_text": { + "name": "detail_page_sidebar_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?'" + }, + "detail_page_sidebar_cta_label": { + "name": "detail_page_sidebar_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Bewerbung'" + }, + "detail_page_sidebar_cta_url": { + "name": "detail_page_sidebar_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "detail_page_related_heading": { + "name": "detail_page_related_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Artikel'" + }, + "detail_page_related_read_more_label": { + "name": "detail_page_related_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "content": { + "name": "content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "posts_hero_image_idx": { + "name": "posts_hero_image_idx", + "columns": [ + "hero_image_id" + ], + "isUnique": false + }, + "posts_detail_page_detail_page_fallback_image_idx": { + "name": "posts_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "posts_meta_meta_image_idx": { + "name": "posts_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "posts_spa_path_idx": { + "name": "posts_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "posts_slug_idx": { + "name": "posts_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "posts_updated_at_idx": { + "name": "posts_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "posts_created_at_idx": { + "name": "posts_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "posts__status_idx": { + "name": "posts__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_hero_image_id_media_id_fk": { + "name": "posts_hero_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "posts_detail_page_fallback_image_id_media_id_fk": { + "name": "posts_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "posts_meta_image_id_media_id_fk": { + "name": "posts_meta_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_rels": { + "name": "posts_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_rels_order_idx": { + "name": "posts_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "posts_rels_parent_idx": { + "name": "posts_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "posts_rels_path_idx": { + "name": "posts_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "posts_rels_posts_id_idx": { + "name": "posts_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "posts_rels_categories_id_idx": { + "name": "posts_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "posts_rels_users_id_idx": { + "name": "posts_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_rels_parent_fk": { + "name": "posts_rels_parent_fk", + "tableFrom": "posts_rels", + "tableTo": "posts", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_posts_fk": { + "name": "posts_rels_posts_fk", + "tableFrom": "posts_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_categories_fk": { + "name": "posts_rels_categories_fk", + "tableFrom": "posts_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_users_fk": { + "name": "posts_rels_users_fk", + "tableFrom": "posts_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_sections": { + "name": "_posts_v_version_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "heading": { + "name": "heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_sections_order_idx": { + "name": "_posts_v_version_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_sections_parent_id_idx": { + "name": "_posts_v_version_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_sections_parent_id_fk": { + "name": "_posts_v_version_sections_parent_id_fk", + "tableFrom": "_posts_v_version_sections", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_tags": { + "name": "_posts_v_version_tags", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_tags_order_idx": { + "name": "_posts_v_version_tags_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_tags_parent_id_idx": { + "name": "_posts_v_version_tags_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_tags_parent_id_fk": { + "name": "_posts_v_version_tags_parent_id_fk", + "tableFrom": "_posts_v_version_tags", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_related_slugs": { + "name": "_posts_v_version_related_slugs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_related_slugs_order_idx": { + "name": "_posts_v_version_related_slugs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_related_slugs_parent_id_idx": { + "name": "_posts_v_version_related_slugs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_related_slugs_parent_id_fk": { + "name": "_posts_v_version_related_slugs_parent_id_fk", + "tableFrom": "_posts_v_version_related_slugs", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_populated_authors": { + "name": "_posts_v_version_populated_authors", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_populated_authors_order_idx": { + "name": "_posts_v_version_populated_authors_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_populated_authors_parent_id_idx": { + "name": "_posts_v_version_populated_authors_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_populated_authors_parent_id_fk": { + "name": "_posts_v_version_populated_authors_parent_id_fk", + "tableFrom": "_posts_v_version_populated_authors", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v": { + "name": "_posts_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_image_id": { + "name": "version_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_excerpt": { + "name": "version_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_cat": { + "name": "version_cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_date": { + "name": "version_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_author_name": { + "name": "version_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_author_role": { + "name": "version_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_read_time": { + "name": "version_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_not_found_title": { + "name": "version_detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel nicht gefunden'" + }, + "version_detail_page_not_found_back_label": { + "name": "version_detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse'" + }, + "version_detail_page_not_found_back_url": { + "name": "version_detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_hero_back_link_label": { + "name": "version_detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "version_detail_page_hero_back_link_url": { + "name": "version_detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_fallback_article_title": { + "name": "version_detail_page_fallback_article_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_category": { + "name": "version_detail_page_fallback_article_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_date": { + "name": "version_detail_page_fallback_article_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aktuell'" + }, + "version_detail_page_fallback_article_author_name": { + "name": "version_detail_page_fallback_article_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Redaktion'" + }, + "version_detail_page_fallback_article_author_role": { + "name": "version_detail_page_fallback_article_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_read_time": { + "name": "version_detail_page_fallback_article_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'1 min'" + }, + "version_detail_page_fallback_article_excerpt": { + "name": "version_detail_page_fallback_article_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Pressebeitrag wird aus Payload CMS geladen.'" + }, + "version_detail_page_fallback_article_tag": { + "name": "version_detail_page_fallback_article_tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_category_colors": { + "name": "version_detail_page_category_colors", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"Auszeichnung\":\"#111D55\",\"Innovation\":\"#2563EB\",\"Engagement\":\"#16A34A\",\"Wirtschaft\":\"#9333EA\"}'" + }, + "version_detail_page_meta_copy_read_time_suffix": { + "name": "version_detail_page_meta_copy_read_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Lesezeit'" + }, + "version_detail_page_sidebar_cta_heading": { + "name": "version_detail_page_sidebar_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_detail_page_sidebar_cta_text": { + "name": "version_detail_page_sidebar_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?'" + }, + "version_detail_page_sidebar_cta_label": { + "name": "version_detail_page_sidebar_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Bewerbung'" + }, + "version_detail_page_sidebar_cta_url": { + "name": "version_detail_page_sidebar_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_detail_page_related_heading": { + "name": "version_detail_page_related_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Artikel'" + }, + "version_detail_page_related_read_more_label": { + "name": "version_detail_page_related_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "version_content": { + "name": "version_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_image_id": { + "name": "version_meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_parent_idx": { + "name": "_posts_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_posts_v_version_version_hero_image_idx": { + "name": "_posts_v_version_version_hero_image_idx", + "columns": [ + "version_hero_image_id" + ], + "isUnique": false + }, + "_posts_v_version_detail_page_version_detail_page_fallbac_idx": { + "name": "_posts_v_version_detail_page_version_detail_page_fallbac_idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_posts_v_version_meta_version_meta_image_idx": { + "name": "_posts_v_version_meta_version_meta_image_idx", + "columns": [ + "version_meta_image_id" + ], + "isUnique": false + }, + "_posts_v_version_version_spa_path_idx": { + "name": "_posts_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_posts_v_version_version_slug_idx": { + "name": "_posts_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_posts_v_version_version_updated_at_idx": { + "name": "_posts_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_posts_v_version_version_created_at_idx": { + "name": "_posts_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_posts_v_version_version__status_idx": { + "name": "_posts_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_posts_v_created_at_idx": { + "name": "_posts_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_posts_v_updated_at_idx": { + "name": "_posts_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_posts_v_latest_idx": { + "name": "_posts_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_posts_v_autosave_idx": { + "name": "_posts_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_parent_id_posts_id_fk": { + "name": "_posts_v_parent_id_posts_id_fk", + "tableFrom": "_posts_v", + "tableTo": "posts", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_hero_image_id_media_id_fk": { + "name": "_posts_v_version_hero_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_posts_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_meta_image_id_media_id_fk": { + "name": "_posts_v_version_meta_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_rels": { + "name": "_posts_v_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_rels_order_idx": { + "name": "_posts_v_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "_posts_v_rels_parent_idx": { + "name": "_posts_v_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_posts_v_rels_path_idx": { + "name": "_posts_v_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "_posts_v_rels_posts_id_idx": { + "name": "_posts_v_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "_posts_v_rels_categories_id_idx": { + "name": "_posts_v_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "_posts_v_rels_users_id_idx": { + "name": "_posts_v_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_rels_parent_fk": { + "name": "_posts_v_rels_parent_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "_posts_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_posts_fk": { + "name": "_posts_v_rels_posts_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_categories_fk": { + "name": "_posts_v_rels_categories_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_users_fk": { + "name": "_posts_v_rels_users_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events_eckdaten": { + "name": "events_eckdaten", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "events_eckdaten_order_idx": { + "name": "events_eckdaten_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "events_eckdaten_parent_id_idx": { + "name": "events_eckdaten_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_eckdaten_parent_id_fk": { + "name": "events_eckdaten_parent_id_fk", + "tableFrom": "events_eckdaten", + "tableTo": "events", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events_updates": { + "name": "events_updates", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "timestamp": { + "name": "timestamp", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "events_updates_order_idx": { + "name": "events_updates_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "events_updates_parent_id_idx": { + "name": "events_updates_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_updates_parent_id_fk": { + "name": "events_updates_parent_id_fk", + "tableFrom": "events_updates", + "tableTo": "events", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events": { + "name": "events", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "subtitle": { + "name": "subtitle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "long_description": { + "name": "long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "time": { + "name": "time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "venue": { + "name": "venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category": { + "name": "category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_not_found_title": { + "name": "detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event nicht gefunden'" + }, + "detail_page_not_found_back_label": { + "name": "detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse-Seite'" + }, + "detail_page_not_found_back_url": { + "name": "detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_date_format_month_names": { + "name": "detail_page_date_format_month_names", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"]'" + }, + "detail_page_date_format_time_suffix": { + "name": "detail_page_date_format_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhr'" + }, + "detail_page_update_styles": { + "name": "detail_page_update_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"ankündigung\":{\"bg\":\"#EBF4FF\",\"color\":\"#1D4ED8\",\"label\":\"Ankündigung\"},\"erinnerung\":{\"bg\":\"#FFFBEB\",\"color\":\"#B45309\",\"label\":\"Erinnerung\"},\"update\":{\"bg\":\"#F3F4F6\",\"color\":\"#374151\",\"label\":\"Update\"},\"highlight\":{\"bg\":\"#111D5512\",\"color\":\"#111D55\",\"label\":\"Highlight\"},\"ergebnis\":{\"bg\":\"#ECFDF5\",\"color\":\"#065F46\",\"label\":\"Ergebnis\"},\"wichtig\":{\"bg\":\"#FEF2F2\",\"color\":\"#991B1B\",\"label\":\"Wichtig\"}}'" + }, + "detail_page_status_styles": { + "name": "detail_page_status_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"geplant\":{\"label\":\"In Planung\",\"bg\":\"#111D5518\",\"color\":\"#111D55\"},\"anmeldung-offen\":{\"label\":\"Anmeldung offen\",\"bg\":\"#ECFDF5\",\"color\":\"#065F46\"},\"intern\":{\"label\":\"Intern\",\"bg\":\"#FEF9C3\",\"color\":\"#713F12\"},\"abgeschlossen\":{\"label\":\"Abgeschlossen\",\"bg\":\"#F3F4F6\",\"color\":\"#6B7280\"}}'" + }, + "detail_page_hero_back_link_label": { + "name": "detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "detail_page_hero_back_link_url": { + "name": "detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_fallback_event_title": { + "name": "detail_page_fallback_event_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "detail_page_fallback_event_date": { + "name": "detail_page_fallback_event_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "detail_page_fallback_event_time": { + "name": "detail_page_fallback_event_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhrzeit folgt'" + }, + "detail_page_fallback_event_location": { + "name": "detail_page_fallback_event_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "detail_page_fallback_event_venue": { + "name": "detail_page_fallback_event_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ort folgt'" + }, + "detail_page_fallback_event_category": { + "name": "detail_page_fallback_event_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "detail_page_fallback_event_status": { + "name": "detail_page_fallback_event_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "detail_page_fallback_event_long_description": { + "name": "detail_page_fallback_event_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieses Event wird aus Payload CMS geladen.'" + }, + "detail_page_sections_about_eyebrow": { + "name": "detail_page_sections_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über die Veranstaltung'" + }, + "detail_page_sections_facts_eyebrow": { + "name": "detail_page_sections_facts_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eckdaten'" + }, + "detail_page_sections_register_label": { + "name": "detail_page_sections_register_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt anmelden'" + }, + "detail_page_sections_register_url": { + "name": "detail_page_sections_register_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "detail_page_sections_question_label": { + "name": "detail_page_sections_question_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Frage stellen'" + }, + "detail_page_sections_question_url": { + "name": "detail_page_sections_question_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "detail_page_updates_copy_heading": { + "name": "detail_page_updates_copy_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Live Updates'" + }, + "detail_page_updates_copy_subscribe_label": { + "name": "detail_page_updates_copy_subscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abonnieren'" + }, + "detail_page_updates_copy_unsubscribe_label": { + "name": "detail_page_updates_copy_unsubscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abgemeldet'" + }, + "detail_page_updates_copy_subscribed_message": { + "name": "detail_page_updates_copy_subscribed_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓ Sie erhalten Benachrichtigungen für dieses Event.'" + }, + "detail_page_bottom_cta_eyebrow": { + "name": "detail_page_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr entdecken'" + }, + "detail_page_bottom_cta_heading": { + "name": "detail_page_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Veranstaltungen'" + }, + "detail_page_bottom_cta_label": { + "name": "detail_page_bottom_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "detail_page_bottom_cta_url": { + "name": "detail_page_bottom_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "events_image_idx": { + "name": "events_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + }, + "events_detail_page_detail_page_fallback_image_idx": { + "name": "events_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "events_spa_path_idx": { + "name": "events_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "events_slug_idx": { + "name": "events_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "events_updated_at_idx": { + "name": "events_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "events_created_at_idx": { + "name": "events_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "events__status_idx": { + "name": "events__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_image_id_media_id_fk": { + "name": "events_image_id_media_id_fk", + "tableFrom": "events", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_detail_page_fallback_image_id_media_id_fk": { + "name": "events_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "events", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v_version_eckdaten": { + "name": "_events_v_version_eckdaten", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_version_eckdaten_order_idx": { + "name": "_events_v_version_eckdaten_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_events_v_version_eckdaten_parent_id_idx": { + "name": "_events_v_version_eckdaten_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_version_eckdaten_parent_id_fk": { + "name": "_events_v_version_eckdaten_parent_id_fk", + "tableFrom": "_events_v_version_eckdaten", + "tableTo": "_events_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v_version_updates": { + "name": "_events_v_version_updates", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "timestamp": { + "name": "timestamp", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_version_updates_order_idx": { + "name": "_events_v_version_updates_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_events_v_version_updates_parent_id_idx": { + "name": "_events_v_version_updates_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_version_updates_parent_id_fk": { + "name": "_events_v_version_updates_parent_id_fk", + "tableFrom": "_events_v_version_updates", + "tableTo": "_events_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v": { + "name": "_events_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_subtitle": { + "name": "version_subtitle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_image_id": { + "name": "version_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_description": { + "name": "version_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_long_description": { + "name": "version_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_date": { + "name": "version_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_time": { + "name": "version_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_venue": { + "name": "version_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_category": { + "name": "version_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_status": { + "name": "version_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_not_found_title": { + "name": "version_detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event nicht gefunden'" + }, + "version_detail_page_not_found_back_label": { + "name": "version_detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse-Seite'" + }, + "version_detail_page_not_found_back_url": { + "name": "version_detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_date_format_month_names": { + "name": "version_detail_page_date_format_month_names", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"]'" + }, + "version_detail_page_date_format_time_suffix": { + "name": "version_detail_page_date_format_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhr'" + }, + "version_detail_page_update_styles": { + "name": "version_detail_page_update_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"ankündigung\":{\"bg\":\"#EBF4FF\",\"color\":\"#1D4ED8\",\"label\":\"Ankündigung\"},\"erinnerung\":{\"bg\":\"#FFFBEB\",\"color\":\"#B45309\",\"label\":\"Erinnerung\"},\"update\":{\"bg\":\"#F3F4F6\",\"color\":\"#374151\",\"label\":\"Update\"},\"highlight\":{\"bg\":\"#111D5512\",\"color\":\"#111D55\",\"label\":\"Highlight\"},\"ergebnis\":{\"bg\":\"#ECFDF5\",\"color\":\"#065F46\",\"label\":\"Ergebnis\"},\"wichtig\":{\"bg\":\"#FEF2F2\",\"color\":\"#991B1B\",\"label\":\"Wichtig\"}}'" + }, + "version_detail_page_status_styles": { + "name": "version_detail_page_status_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"geplant\":{\"label\":\"In Planung\",\"bg\":\"#111D5518\",\"color\":\"#111D55\"},\"anmeldung-offen\":{\"label\":\"Anmeldung offen\",\"bg\":\"#ECFDF5\",\"color\":\"#065F46\"},\"intern\":{\"label\":\"Intern\",\"bg\":\"#FEF9C3\",\"color\":\"#713F12\"},\"abgeschlossen\":{\"label\":\"Abgeschlossen\",\"bg\":\"#F3F4F6\",\"color\":\"#6B7280\"}}'" + }, + "version_detail_page_hero_back_link_label": { + "name": "version_detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "version_detail_page_hero_back_link_url": { + "name": "version_detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_fallback_event_title": { + "name": "version_detail_page_fallback_event_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_detail_page_fallback_event_date": { + "name": "version_detail_page_fallback_event_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "version_detail_page_fallback_event_time": { + "name": "version_detail_page_fallback_event_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhrzeit folgt'" + }, + "version_detail_page_fallback_event_location": { + "name": "version_detail_page_fallback_event_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_detail_page_fallback_event_venue": { + "name": "version_detail_page_fallback_event_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ort folgt'" + }, + "version_detail_page_fallback_event_category": { + "name": "version_detail_page_fallback_event_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_detail_page_fallback_event_status": { + "name": "version_detail_page_fallback_event_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "version_detail_page_fallback_event_long_description": { + "name": "version_detail_page_fallback_event_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieses Event wird aus Payload CMS geladen.'" + }, + "version_detail_page_sections_about_eyebrow": { + "name": "version_detail_page_sections_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über die Veranstaltung'" + }, + "version_detail_page_sections_facts_eyebrow": { + "name": "version_detail_page_sections_facts_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eckdaten'" + }, + "version_detail_page_sections_register_label": { + "name": "version_detail_page_sections_register_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt anmelden'" + }, + "version_detail_page_sections_register_url": { + "name": "version_detail_page_sections_register_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_detail_page_sections_question_label": { + "name": "version_detail_page_sections_question_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Frage stellen'" + }, + "version_detail_page_sections_question_url": { + "name": "version_detail_page_sections_question_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "version_detail_page_updates_copy_heading": { + "name": "version_detail_page_updates_copy_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Live Updates'" + }, + "version_detail_page_updates_copy_subscribe_label": { + "name": "version_detail_page_updates_copy_subscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abonnieren'" + }, + "version_detail_page_updates_copy_unsubscribe_label": { + "name": "version_detail_page_updates_copy_unsubscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abgemeldet'" + }, + "version_detail_page_updates_copy_subscribed_message": { + "name": "version_detail_page_updates_copy_subscribed_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓ Sie erhalten Benachrichtigungen für dieses Event.'" + }, + "version_detail_page_bottom_cta_eyebrow": { + "name": "version_detail_page_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr entdecken'" + }, + "version_detail_page_bottom_cta_heading": { + "name": "version_detail_page_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Veranstaltungen'" + }, + "version_detail_page_bottom_cta_label": { + "name": "version_detail_page_bottom_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "version_detail_page_bottom_cta_url": { + "name": "version_detail_page_bottom_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_parent_idx": { + "name": "_events_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_events_v_version_version_image_idx": { + "name": "_events_v_version_version_image_idx", + "columns": [ + "version_image_id" + ], + "isUnique": false + }, + "_events_v_version_detail_page_version_detail_page_fallba_idx": { + "name": "_events_v_version_detail_page_version_detail_page_fallba_idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_events_v_version_version_spa_path_idx": { + "name": "_events_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_events_v_version_version_slug_idx": { + "name": "_events_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_events_v_version_version_updated_at_idx": { + "name": "_events_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_events_v_version_version_created_at_idx": { + "name": "_events_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_events_v_version_version__status_idx": { + "name": "_events_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_events_v_created_at_idx": { + "name": "_events_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_events_v_updated_at_idx": { + "name": "_events_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_events_v_latest_idx": { + "name": "_events_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_events_v_autosave_idx": { + "name": "_events_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_parent_id_events_id_fk": { + "name": "_events_v_parent_id_events_id_fk", + "tableFrom": "_events_v", + "tableTo": "events", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_events_v_version_image_id_media_id_fk": { + "name": "_events_v_version_image_id_media_id_fk", + "tableFrom": "_events_v", + "tableTo": "media", + "columnsFrom": [ + "version_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_events_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_events_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_events_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "preistraeger": { + "name": "preistraeger", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category": { + "name": "category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "award_type": { + "name": "award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "short_desc": { + "name": "short_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "long_desc": { + "name": "long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote_person": { + "name": "quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote_role": { + "name": "quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "has_media": { + "name": "has_media", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_breadcrumb_url": { + "name": "detail_page_breadcrumb_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "detail_page_breadcrumb_label": { + "name": "detail_page_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "detail_page_fallback_winner_name": { + "name": "detail_page_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_category": { + "name": "detail_page_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_award_type": { + "name": "detail_page_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "detail_page_fallback_winner_long_desc": { + "name": "detail_page_fallback_winner_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Preisträger wird aus Payload CMS geladen.'" + }, + "detail_page_fallback_winner_quote": { + "name": "detail_page_fallback_winner_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Erfolgsgeschichte wird aktuell in Payload CMS gepflegt.'" + }, + "detail_page_fallback_winner_quote_person": { + "name": "detail_page_fallback_winner_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP'" + }, + "detail_page_fallback_winner_quote_role": { + "name": "detail_page_fallback_winner_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_location": { + "name": "detail_page_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "detail_page_fallback_winner_industry": { + "name": "detail_page_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "detail_page_sections_company_heading": { + "name": "detail_page_sections_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "detail_page_sections_jury_heading": { + "name": "detail_page_sections_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Warum ausgezeichnet?'" + }, + "detail_page_sections_jury_text_before_name": { + "name": "detail_page_sections_jury_text_before_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises überzeugte'" + }, + "detail_page_sections_jury_text_after_name_before_category": { + "name": "detail_page_sections_jury_text_after_name_before_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'durch außergewöhnliche Leistungen im Bereich'" + }, + "detail_page_sections_jury_text_after_category": { + "name": "detail_page_sections_jury_text_after_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Unternehmen steht exemplarisch für die Stärken des bayerischen Mittelstands: unternehmerischen Mut, wertebasierte Führung und nachhaltige Wirkung weit über den eigenen Betrieb hinaus.'" + }, + "detail_page_side_image_image_id": { + "name": "detail_page_side_image_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_side_image_image_alt": { + "name": "detail_page_side_image_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala Preisverleihung'" + }, + "detail_page_facts_heading": { + "name": "detail_page_facts_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auf einen Blick'" + }, + "detail_page_facts_category_label": { + "name": "detail_page_facts_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kategorie'" + }, + "detail_page_facts_award_label": { + "name": "detail_page_facts_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "detail_page_facts_year_label": { + "name": "detail_page_facts_year_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahr'" + }, + "detail_page_facts_location_label": { + "name": "detail_page_facts_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "detail_page_facts_industry_label": { + "name": "detail_page_facts_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "detail_page_website_cta_label": { + "name": "detail_page_website_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen ↗'" + }, + "detail_page_back_link_url": { + "name": "detail_page_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "detail_page_back_link_label": { + "name": "detail_page_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "preistraeger_image_idx": { + "name": "preistraeger_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + }, + "preistraeger_detail_page_detail_page_fallback_image_idx": { + "name": "preistraeger_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "preistraeger_detail_page_side_image_detail_page_side_ima_idx": { + "name": "preistraeger_detail_page_side_image_detail_page_side_ima_idx", + "columns": [ + "detail_page_side_image_image_id" + ], + "isUnique": false + }, + "preistraeger_spa_path_idx": { + "name": "preistraeger_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "preistraeger_slug_idx": { + "name": "preistraeger_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "preistraeger_updated_at_idx": { + "name": "preistraeger_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "preistraeger_created_at_idx": { + "name": "preistraeger_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "preistraeger__status_idx": { + "name": "preistraeger__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "preistraeger_image_id_media_id_fk": { + "name": "preistraeger_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "preistraeger_detail_page_fallback_image_id_media_id_fk": { + "name": "preistraeger_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "preistraeger_detail_page_side_image_image_id_media_id_fk": { + "name": "preistraeger_detail_page_side_image_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "detail_page_side_image_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_preistraeger_v": { + "name": "_preistraeger_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_image_id": { + "name": "version_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_category": { + "name": "version_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_year": { + "name": "version_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_award_type": { + "name": "version_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_short_desc": { + "name": "version_short_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_long_desc": { + "name": "version_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_description": { + "name": "version_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote": { + "name": "version_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote_person": { + "name": "version_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote_role": { + "name": "version_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_industry": { + "name": "version_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_website": { + "name": "version_website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_has_media": { + "name": "version_has_media", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_breadcrumb_url": { + "name": "version_detail_page_breadcrumb_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_detail_page_breadcrumb_label": { + "name": "version_detail_page_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_detail_page_fallback_winner_name": { + "name": "version_detail_page_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_category": { + "name": "version_detail_page_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_award_type": { + "name": "version_detail_page_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_detail_page_fallback_winner_long_desc": { + "name": "version_detail_page_fallback_winner_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Preisträger wird aus Payload CMS geladen.'" + }, + "version_detail_page_fallback_winner_quote": { + "name": "version_detail_page_fallback_winner_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Erfolgsgeschichte wird aktuell in Payload CMS gepflegt.'" + }, + "version_detail_page_fallback_winner_quote_person": { + "name": "version_detail_page_fallback_winner_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP'" + }, + "version_detail_page_fallback_winner_quote_role": { + "name": "version_detail_page_fallback_winner_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_location": { + "name": "version_detail_page_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_detail_page_fallback_winner_industry": { + "name": "version_detail_page_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "version_detail_page_sections_company_heading": { + "name": "version_detail_page_sections_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "version_detail_page_sections_jury_heading": { + "name": "version_detail_page_sections_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Warum ausgezeichnet?'" + }, + "version_detail_page_sections_jury_text_before_name": { + "name": "version_detail_page_sections_jury_text_before_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises überzeugte'" + }, + "version_detail_page_sections_jury_text_after_name_before_category": { + "name": "version_detail_page_sections_jury_text_after_name_before_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'durch außergewöhnliche Leistungen im Bereich'" + }, + "version_detail_page_sections_jury_text_after_category": { + "name": "version_detail_page_sections_jury_text_after_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Unternehmen steht exemplarisch für die Stärken des bayerischen Mittelstands: unternehmerischen Mut, wertebasierte Führung und nachhaltige Wirkung weit über den eigenen Betrieb hinaus.'" + }, + "version_detail_page_side_image_image_id": { + "name": "version_detail_page_side_image_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_side_image_image_alt": { + "name": "version_detail_page_side_image_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala Preisverleihung'" + }, + "version_detail_page_facts_heading": { + "name": "version_detail_page_facts_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auf einen Blick'" + }, + "version_detail_page_facts_category_label": { + "name": "version_detail_page_facts_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kategorie'" + }, + "version_detail_page_facts_award_label": { + "name": "version_detail_page_facts_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_detail_page_facts_year_label": { + "name": "version_detail_page_facts_year_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahr'" + }, + "version_detail_page_facts_location_label": { + "name": "version_detail_page_facts_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_detail_page_facts_industry_label": { + "name": "version_detail_page_facts_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_detail_page_website_cta_label": { + "name": "version_detail_page_website_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen ↗'" + }, + "version_detail_page_back_link_url": { + "name": "version_detail_page_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_detail_page_back_link_label": { + "name": "version_detail_page_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_preistraeger_v_parent_idx": { + "name": "_preistraeger_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_image_idx": { + "name": "_preistraeger_v_version_version_image_idx", + "columns": [ + "version_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_detail_page_version_detail_page__idx": { + "name": "_preistraeger_v_version_detail_page_version_detail_page__idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_detail_page_side_image_version_d_idx": { + "name": "_preistraeger_v_version_detail_page_side_image_version_d_idx", + "columns": [ + "version_detail_page_side_image_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_spa_path_idx": { + "name": "_preistraeger_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_slug_idx": { + "name": "_preistraeger_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_updated_at_idx": { + "name": "_preistraeger_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_created_at_idx": { + "name": "_preistraeger_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_preistraeger_v_version_version__status_idx": { + "name": "_preistraeger_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_preistraeger_v_created_at_idx": { + "name": "_preistraeger_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_preistraeger_v_updated_at_idx": { + "name": "_preistraeger_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_preistraeger_v_latest_idx": { + "name": "_preistraeger_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_preistraeger_v_autosave_idx": { + "name": "_preistraeger_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_preistraeger_v_parent_id_preistraeger_id_fk": { + "name": "_preistraeger_v_parent_id_preistraeger_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "preistraeger", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_image_id_media_id_fk": { + "name": "_preistraeger_v_version_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_preistraeger_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_detail_page_side_image_image_id_media_id_fk": { + "name": "_preistraeger_v_version_detail_page_side_image_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_side_image_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "media": { + "name": "media", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "alt": { + "name": "alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "caption": { + "name": "caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "folder_id": { + "name": "folder_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "url": { + "name": "url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "thumbnail_u_r_l": { + "name": "thumbnail_u_r_l", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "filename": { + "name": "filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mime_type": { + "name": "mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "filesize": { + "name": "filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "height": { + "name": "height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "focal_x": { + "name": "focal_x", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "focal_y": { + "name": "focal_y", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_url": { + "name": "sizes_thumbnail_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_width": { + "name": "sizes_thumbnail_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_height": { + "name": "sizes_thumbnail_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_mime_type": { + "name": "sizes_thumbnail_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_filesize": { + "name": "sizes_thumbnail_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_filename": { + "name": "sizes_thumbnail_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_url": { + "name": "sizes_square_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_width": { + "name": "sizes_square_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_height": { + "name": "sizes_square_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_mime_type": { + "name": "sizes_square_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_filesize": { + "name": "sizes_square_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_filename": { + "name": "sizes_square_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_url": { + "name": "sizes_small_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_width": { + "name": "sizes_small_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_height": { + "name": "sizes_small_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_mime_type": { + "name": "sizes_small_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_filesize": { + "name": "sizes_small_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_filename": { + "name": "sizes_small_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_url": { + "name": "sizes_medium_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_width": { + "name": "sizes_medium_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_height": { + "name": "sizes_medium_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_mime_type": { + "name": "sizes_medium_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_filesize": { + "name": "sizes_medium_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_filename": { + "name": "sizes_medium_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_url": { + "name": "sizes_large_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_width": { + "name": "sizes_large_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_height": { + "name": "sizes_large_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_mime_type": { + "name": "sizes_large_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_filesize": { + "name": "sizes_large_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_filename": { + "name": "sizes_large_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_url": { + "name": "sizes_xlarge_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_width": { + "name": "sizes_xlarge_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_height": { + "name": "sizes_xlarge_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_mime_type": { + "name": "sizes_xlarge_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_filesize": { + "name": "sizes_xlarge_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_filename": { + "name": "sizes_xlarge_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_url": { + "name": "sizes_og_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_width": { + "name": "sizes_og_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_height": { + "name": "sizes_og_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_mime_type": { + "name": "sizes_og_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_filesize": { + "name": "sizes_og_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_filename": { + "name": "sizes_og_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "media_folder_idx": { + "name": "media_folder_idx", + "columns": [ + "folder_id" + ], + "isUnique": false + }, + "media_updated_at_idx": { + "name": "media_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "media_created_at_idx": { + "name": "media_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "media_filename_idx": { + "name": "media_filename_idx", + "columns": [ + "filename" + ], + "isUnique": true + }, + "media_sizes_thumbnail_sizes_thumbnail_filename_idx": { + "name": "media_sizes_thumbnail_sizes_thumbnail_filename_idx", + "columns": [ + "sizes_thumbnail_filename" + ], + "isUnique": false + }, + "media_sizes_square_sizes_square_filename_idx": { + "name": "media_sizes_square_sizes_square_filename_idx", + "columns": [ + "sizes_square_filename" + ], + "isUnique": false + }, + "media_sizes_small_sizes_small_filename_idx": { + "name": "media_sizes_small_sizes_small_filename_idx", + "columns": [ + "sizes_small_filename" + ], + "isUnique": false + }, + "media_sizes_medium_sizes_medium_filename_idx": { + "name": "media_sizes_medium_sizes_medium_filename_idx", + "columns": [ + "sizes_medium_filename" + ], + "isUnique": false + }, + "media_sizes_large_sizes_large_filename_idx": { + "name": "media_sizes_large_sizes_large_filename_idx", + "columns": [ + "sizes_large_filename" + ], + "isUnique": false + }, + "media_sizes_xlarge_sizes_xlarge_filename_idx": { + "name": "media_sizes_xlarge_sizes_xlarge_filename_idx", + "columns": [ + "sizes_xlarge_filename" + ], + "isUnique": false + }, + "media_sizes_og_sizes_og_filename_idx": { + "name": "media_sizes_og_sizes_og_filename_idx", + "columns": [ + "sizes_og_filename" + ], + "isUnique": false + } + }, + "foreignKeys": { + "media_folder_id_payload_folders_id_fk": { + "name": "media_folder_id_payload_folders_id_fk", + "tableFrom": "media", + "tableTo": "payload_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "categories_breadcrumbs": { + "name": "categories_breadcrumbs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "doc_id": { + "name": "doc_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "url": { + "name": "url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "categories_breadcrumbs_order_idx": { + "name": "categories_breadcrumbs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "categories_breadcrumbs_parent_id_idx": { + "name": "categories_breadcrumbs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "categories_breadcrumbs_doc_idx": { + "name": "categories_breadcrumbs_doc_idx", + "columns": [ + "doc_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "categories_breadcrumbs_doc_id_categories_id_fk": { + "name": "categories_breadcrumbs_doc_id_categories_id_fk", + "tableFrom": "categories_breadcrumbs", + "tableTo": "categories", + "columnsFrom": [ + "doc_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "categories_breadcrumbs_parent_id_fk": { + "name": "categories_breadcrumbs_parent_id_fk", + "tableFrom": "categories_breadcrumbs", + "tableTo": "categories", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "categories": { + "name": "categories", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "categories_slug_idx": { + "name": "categories_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "categories_parent_idx": { + "name": "categories_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "categories_updated_at_idx": { + "name": "categories_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "categories_created_at_idx": { + "name": "categories_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "categories_parent_id_categories_id_fk": { + "name": "categories_parent_id_categories_id_fk", + "tableFrom": "categories", + "tableTo": "categories", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "users_sessions": { + "name": "users_sessions", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "expires_at": { + "name": "expires_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "users_sessions_order_idx": { + "name": "users_sessions_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "users_sessions_parent_id_idx": { + "name": "users_sessions_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "users_sessions_parent_id_fk": { + "name": "users_sessions_parent_id_fk", + "tableFrom": "users_sessions", + "tableTo": "users", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "users": { + "name": "users", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "reset_password_token": { + "name": "reset_password_token", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "reset_password_expiration": { + "name": "reset_password_expiration", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "salt": { + "name": "salt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hash": { + "name": "hash", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "login_attempts": { + "name": "login_attempts", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0 + }, + "lock_until": { + "name": "lock_until", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "users_updated_at_idx": { + "name": "users_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "users_created_at_idx": { + "name": "users_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "users_email_idx": { + "name": "users_email_idx", + "columns": [ + "email" + ], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "redirects": { + "name": "redirects", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "from": { + "name": "from", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "to_type": { + "name": "to_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "to_url": { + "name": "to_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "redirects_from_idx": { + "name": "redirects_from_idx", + "columns": [ + "from" + ], + "isUnique": true + }, + "redirects_updated_at_idx": { + "name": "redirects_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "redirects_created_at_idx": { + "name": "redirects_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "redirects_rels": { + "name": "redirects_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "redirects_rels_order_idx": { + "name": "redirects_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "redirects_rels_parent_idx": { + "name": "redirects_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "redirects_rels_path_idx": { + "name": "redirects_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "redirects_rels_pages_id_idx": { + "name": "redirects_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "redirects_rels_posts_id_idx": { + "name": "redirects_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "redirects_rels_parent_fk": { + "name": "redirects_rels_parent_fk", + "tableFrom": "redirects_rels", + "tableTo": "redirects", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "redirects_rels_pages_fk": { + "name": "redirects_rels_pages_fk", + "tableFrom": "redirects_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "redirects_rels_posts_fk": { + "name": "redirects_rels_posts_fk", + "tableFrom": "redirects_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_checkbox": { + "name": "forms_blocks_checkbox", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_checkbox_order_idx": { + "name": "forms_blocks_checkbox_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_checkbox_parent_id_idx": { + "name": "forms_blocks_checkbox_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_checkbox_path_idx": { + "name": "forms_blocks_checkbox_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_checkbox_parent_id_fk": { + "name": "forms_blocks_checkbox_parent_id_fk", + "tableFrom": "forms_blocks_checkbox", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_country": { + "name": "forms_blocks_country", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_country_order_idx": { + "name": "forms_blocks_country_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_country_parent_id_idx": { + "name": "forms_blocks_country_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_country_path_idx": { + "name": "forms_blocks_country_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_country_parent_id_fk": { + "name": "forms_blocks_country_parent_id_fk", + "tableFrom": "forms_blocks_country", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_email": { + "name": "forms_blocks_email", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_email_order_idx": { + "name": "forms_blocks_email_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_email_parent_id_idx": { + "name": "forms_blocks_email_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_email_path_idx": { + "name": "forms_blocks_email_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_email_parent_id_fk": { + "name": "forms_blocks_email_parent_id_fk", + "tableFrom": "forms_blocks_email", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_message": { + "name": "forms_blocks_message", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_message_order_idx": { + "name": "forms_blocks_message_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_message_parent_id_idx": { + "name": "forms_blocks_message_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_message_path_idx": { + "name": "forms_blocks_message_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_message_parent_id_fk": { + "name": "forms_blocks_message_parent_id_fk", + "tableFrom": "forms_blocks_message", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_number": { + "name": "forms_blocks_number", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_number_order_idx": { + "name": "forms_blocks_number_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_number_parent_id_idx": { + "name": "forms_blocks_number_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_number_path_idx": { + "name": "forms_blocks_number_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_number_parent_id_fk": { + "name": "forms_blocks_number_parent_id_fk", + "tableFrom": "forms_blocks_number", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_select_options": { + "name": "forms_blocks_select_options", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_select_options_order_idx": { + "name": "forms_blocks_select_options_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_select_options_parent_id_idx": { + "name": "forms_blocks_select_options_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_select_options_parent_id_fk": { + "name": "forms_blocks_select_options_parent_id_fk", + "tableFrom": "forms_blocks_select_options", + "tableTo": "forms_blocks_select", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_select": { + "name": "forms_blocks_select", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "placeholder": { + "name": "placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_select_order_idx": { + "name": "forms_blocks_select_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_select_parent_id_idx": { + "name": "forms_blocks_select_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_select_path_idx": { + "name": "forms_blocks_select_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_select_parent_id_fk": { + "name": "forms_blocks_select_parent_id_fk", + "tableFrom": "forms_blocks_select", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_state": { + "name": "forms_blocks_state", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_state_order_idx": { + "name": "forms_blocks_state_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_state_parent_id_idx": { + "name": "forms_blocks_state_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_state_path_idx": { + "name": "forms_blocks_state_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_state_parent_id_fk": { + "name": "forms_blocks_state_parent_id_fk", + "tableFrom": "forms_blocks_state", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_text": { + "name": "forms_blocks_text", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_text_order_idx": { + "name": "forms_blocks_text_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_text_parent_id_idx": { + "name": "forms_blocks_text_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_text_path_idx": { + "name": "forms_blocks_text_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_text_parent_id_fk": { + "name": "forms_blocks_text_parent_id_fk", + "tableFrom": "forms_blocks_text", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_textarea": { + "name": "forms_blocks_textarea", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_textarea_order_idx": { + "name": "forms_blocks_textarea_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_textarea_parent_id_idx": { + "name": "forms_blocks_textarea_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_textarea_path_idx": { + "name": "forms_blocks_textarea_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_textarea_parent_id_fk": { + "name": "forms_blocks_textarea_parent_id_fk", + "tableFrom": "forms_blocks_textarea", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_emails": { + "name": "forms_emails", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "email_to": { + "name": "email_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cc": { + "name": "cc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bcc": { + "name": "bcc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "reply_to": { + "name": "reply_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "email_from": { + "name": "email_from", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "subject": { + "name": "subject", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'You''ve received a new message.'" + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_emails_order_idx": { + "name": "forms_emails_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_emails_parent_id_idx": { + "name": "forms_emails_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_emails_parent_id_fk": { + "name": "forms_emails_parent_id_fk", + "tableFrom": "forms_emails", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms": { + "name": "forms", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "submit_button_label": { + "name": "submit_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "confirmation_type": { + "name": "confirmation_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'message'" + }, + "confirmation_message": { + "name": "confirmation_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "redirect_url": { + "name": "redirect_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "forms_updated_at_idx": { + "name": "forms_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "forms_created_at_idx": { + "name": "forms_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_submissions_submission_data": { + "name": "form_submissions_submission_data", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "field": { + "name": "field", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "form_submissions_submission_data_order_idx": { + "name": "form_submissions_submission_data_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "form_submissions_submission_data_parent_id_idx": { + "name": "form_submissions_submission_data_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_submissions_submission_data_parent_id_fk": { + "name": "form_submissions_submission_data_parent_id_fk", + "tableFrom": "form_submissions_submission_data", + "tableTo": "form_submissions", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_submissions": { + "name": "form_submissions", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "form_id": { + "name": "form_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "form_submissions_form_idx": { + "name": "form_submissions_form_idx", + "columns": [ + "form_id" + ], + "isUnique": false + }, + "form_submissions_updated_at_idx": { + "name": "form_submissions_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "form_submissions_created_at_idx": { + "name": "form_submissions_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_submissions_form_id_forms_id_fk": { + "name": "form_submissions_form_id_forms_id_fk", + "tableFrom": "form_submissions", + "tableTo": "forms", + "columnsFrom": [ + "form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "search_categories": { + "name": "search_categories", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "relation_to": { + "name": "relation_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category_i_d": { + "name": "category_i_d", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "search_categories_order_idx": { + "name": "search_categories_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "search_categories_parent_id_idx": { + "name": "search_categories_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "search_categories_parent_id_fk": { + "name": "search_categories_parent_id_fk", + "tableFrom": "search_categories", + "tableTo": "search", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "search": { + "name": "search", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "priority": { + "name": "priority", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "search_slug_idx": { + "name": "search_slug_idx", + "columns": [ + "slug" + ], + "isUnique": false + }, + "search_meta_meta_image_idx": { + "name": "search_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "search_updated_at_idx": { + "name": "search_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "search_created_at_idx": { + "name": "search_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "search_meta_image_id_media_id_fk": { + "name": "search_meta_image_id_media_id_fk", + "tableFrom": "search", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "search_rels": { + "name": "search_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "search_rels_order_idx": { + "name": "search_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "search_rels_parent_idx": { + "name": "search_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "search_rels_path_idx": { + "name": "search_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "search_rels_posts_id_idx": { + "name": "search_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "search_rels_parent_fk": { + "name": "search_rels_parent_fk", + "tableFrom": "search_rels", + "tableTo": "search", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_posts_fk": { + "name": "search_rels_posts_fk", + "tableFrom": "search_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_kv": { + "name": "payload_kv", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "data": { + "name": "data", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "payload_kv_key_idx": { + "name": "payload_kv_key_idx", + "columns": [ + "key" + ], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_jobs_log": { + "name": "payload_jobs_log", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "executed_at": { + "name": "executed_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "completed_at": { + "name": "completed_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "task_slug": { + "name": "task_slug", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "task_i_d": { + "name": "task_i_d", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "input": { + "name": "input", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "output": { + "name": "output", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "state": { + "name": "state", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_jobs_log_order_idx": { + "name": "payload_jobs_log_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "payload_jobs_log_parent_id_idx": { + "name": "payload_jobs_log_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_jobs_log_parent_id_fk": { + "name": "payload_jobs_log_parent_id_fk", + "tableFrom": "payload_jobs_log", + "tableTo": "payload_jobs", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_jobs": { + "name": "payload_jobs", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "input": { + "name": "input", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "completed_at": { + "name": "completed_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "total_tried": { + "name": "total_tried", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0 + }, + "has_error": { + "name": "has_error", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "task_slug": { + "name": "task_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "queue": { + "name": "queue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "wait_until": { + "name": "wait_until", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "processing": { + "name": "processing", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_jobs_completed_at_idx": { + "name": "payload_jobs_completed_at_idx", + "columns": [ + "completed_at" + ], + "isUnique": false + }, + "payload_jobs_total_tried_idx": { + "name": "payload_jobs_total_tried_idx", + "columns": [ + "total_tried" + ], + "isUnique": false + }, + "payload_jobs_has_error_idx": { + "name": "payload_jobs_has_error_idx", + "columns": [ + "has_error" + ], + "isUnique": false + }, + "payload_jobs_task_slug_idx": { + "name": "payload_jobs_task_slug_idx", + "columns": [ + "task_slug" + ], + "isUnique": false + }, + "payload_jobs_queue_idx": { + "name": "payload_jobs_queue_idx", + "columns": [ + "queue" + ], + "isUnique": false + }, + "payload_jobs_wait_until_idx": { + "name": "payload_jobs_wait_until_idx", + "columns": [ + "wait_until" + ], + "isUnique": false + }, + "payload_jobs_processing_idx": { + "name": "payload_jobs_processing_idx", + "columns": [ + "processing" + ], + "isUnique": false + }, + "payload_jobs_updated_at_idx": { + "name": "payload_jobs_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_jobs_created_at_idx": { + "name": "payload_jobs_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_folders_folder_type": { + "name": "payload_folders_folder_type", + "columns": { + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "payload_folders_folder_type_order_idx": { + "name": "payload_folders_folder_type_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_folders_folder_type_parent_idx": { + "name": "payload_folders_folder_type_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_folders_folder_type_parent_fk": { + "name": "payload_folders_folder_type_parent_fk", + "tableFrom": "payload_folders_folder_type", + "tableTo": "payload_folders", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_folders": { + "name": "payload_folders", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "folder_id": { + "name": "folder_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_folders_name_idx": { + "name": "payload_folders_name_idx", + "columns": [ + "name" + ], + "isUnique": false + }, + "payload_folders_folder_idx": { + "name": "payload_folders_folder_idx", + "columns": [ + "folder_id" + ], + "isUnique": false + }, + "payload_folders_updated_at_idx": { + "name": "payload_folders_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_folders_created_at_idx": { + "name": "payload_folders_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_folders_folder_id_payload_folders_id_fk": { + "name": "payload_folders_folder_id_payload_folders_id_fk", + "tableFrom": "payload_folders", + "tableTo": "payload_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_locked_documents": { + "name": "payload_locked_documents", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "global_slug": { + "name": "global_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_locked_documents_global_slug_idx": { + "name": "payload_locked_documents_global_slug_idx", + "columns": [ + "global_slug" + ], + "isUnique": false + }, + "payload_locked_documents_updated_at_idx": { + "name": "payload_locked_documents_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_locked_documents_created_at_idx": { + "name": "payload_locked_documents_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_locked_documents_rels": { + "name": "payload_locked_documents_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "events_id": { + "name": "events_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "redirects_id": { + "name": "redirects_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "forms_id": { + "name": "forms_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "form_submissions_id": { + "name": "form_submissions_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "search_id": { + "name": "search_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "payload_folders_id": { + "name": "payload_folders_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_locked_documents_rels_order_idx": { + "name": "payload_locked_documents_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_locked_documents_rels_parent_idx": { + "name": "payload_locked_documents_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_path_idx": { + "name": "payload_locked_documents_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "payload_locked_documents_rels_pages_id_idx": { + "name": "payload_locked_documents_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_posts_id_idx": { + "name": "payload_locked_documents_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_events_id_idx": { + "name": "payload_locked_documents_rels_events_id_idx", + "columns": [ + "events_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_preistraeger_id_idx": { + "name": "payload_locked_documents_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_media_id_idx": { + "name": "payload_locked_documents_rels_media_id_idx", + "columns": [ + "media_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_categories_id_idx": { + "name": "payload_locked_documents_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_users_id_idx": { + "name": "payload_locked_documents_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_redirects_id_idx": { + "name": "payload_locked_documents_rels_redirects_id_idx", + "columns": [ + "redirects_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_forms_id_idx": { + "name": "payload_locked_documents_rels_forms_id_idx", + "columns": [ + "forms_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_form_submissions_id_idx": { + "name": "payload_locked_documents_rels_form_submissions_id_idx", + "columns": [ + "form_submissions_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_search_id_idx": { + "name": "payload_locked_documents_rels_search_id_idx", + "columns": [ + "search_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_payload_folders_id_idx": { + "name": "payload_locked_documents_rels_payload_folders_id_idx", + "columns": [ + "payload_folders_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_locked_documents_rels_parent_fk": { + "name": "payload_locked_documents_rels_parent_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_locked_documents", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_pages_fk": { + "name": "payload_locked_documents_rels_pages_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_posts_fk": { + "name": "payload_locked_documents_rels_posts_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_events_fk": { + "name": "payload_locked_documents_rels_events_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "events", + "columnsFrom": [ + "events_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_preistraeger_fk": { + "name": "payload_locked_documents_rels_preistraeger_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_media_fk": { + "name": "payload_locked_documents_rels_media_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_categories_fk": { + "name": "payload_locked_documents_rels_categories_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_users_fk": { + "name": "payload_locked_documents_rels_users_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_redirects_fk": { + "name": "payload_locked_documents_rels_redirects_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "redirects", + "columnsFrom": [ + "redirects_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_forms_fk": { + "name": "payload_locked_documents_rels_forms_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "forms", + "columnsFrom": [ + "forms_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_form_submissions_fk": { + "name": "payload_locked_documents_rels_form_submissions_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "form_submissions", + "columnsFrom": [ + "form_submissions_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_search_fk": { + "name": "payload_locked_documents_rels_search_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "search", + "columnsFrom": [ + "search_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_payload_folders_fk": { + "name": "payload_locked_documents_rels_payload_folders_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_folders", + "columnsFrom": [ + "payload_folders_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_preferences": { + "name": "payload_preferences", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_preferences_key_idx": { + "name": "payload_preferences_key_idx", + "columns": [ + "key" + ], + "isUnique": false + }, + "payload_preferences_updated_at_idx": { + "name": "payload_preferences_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_preferences_created_at_idx": { + "name": "payload_preferences_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_preferences_rels": { + "name": "payload_preferences_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_preferences_rels_order_idx": { + "name": "payload_preferences_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_preferences_rels_parent_idx": { + "name": "payload_preferences_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "payload_preferences_rels_path_idx": { + "name": "payload_preferences_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "payload_preferences_rels_users_id_idx": { + "name": "payload_preferences_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_preferences_rels_parent_fk": { + "name": "payload_preferences_rels_parent_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "payload_preferences", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_preferences_rels_users_fk": { + "name": "payload_preferences_rels_users_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_migrations": { + "name": "payload_migrations", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "batch": { + "name": "batch", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_migrations_updated_at_idx": { + "name": "payload_migrations_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_migrations_created_at_idx": { + "name": "payload_migrations_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_nav_items_sub": { + "name": "header_nav_items_sub", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_nav_items_sub_order_idx": { + "name": "header_nav_items_sub_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_nav_items_sub_parent_id_idx": { + "name": "header_nav_items_sub_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_nav_items_sub_parent_id_fk": { + "name": "header_nav_items_sub_parent_id_fk", + "tableFrom": "header_nav_items_sub", + "tableTo": "header_nav_items", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_nav_items": { + "name": "header_nav_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "sub_label": { + "name": "sub_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "header_nav_items_order_idx": { + "name": "header_nav_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_nav_items_parent_id_idx": { + "name": "header_nav_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_nav_items_parent_id_fk": { + "name": "header_nav_items_parent_id_fk", + "tableFrom": "header_nav_items", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_secondary_links": { + "name": "header_secondary_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_secondary_links_order_idx": { + "name": "header_secondary_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_secondary_links_parent_id_idx": { + "name": "header_secondary_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_secondary_links_parent_id_fk": { + "name": "header_secondary_links_parent_id_fk", + "tableFrom": "header_secondary_links", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_ctas": { + "name": "header_ctas", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "variant": { + "name": "variant", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'primary'" + } + }, + "indexes": { + "header_ctas_order_idx": { + "name": "header_ctas_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_ctas_parent_id_idx": { + "name": "header_ctas_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_ctas_parent_id_fk": { + "name": "header_ctas_parent_id_fk", + "tableFrom": "header_ctas", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_social_links": { + "name": "header_social_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_social_links_order_idx": { + "name": "header_social_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_social_links_parent_id_idx": { + "name": "header_social_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_social_links_parent_id_fk": { + "name": "header_social_links_parent_id_fk", + "tableFrom": "header_social_links", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header": { + "name": "header", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "overlay_logo_alt": { + "name": "overlay_logo_alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'BMP Logo'" + }, + "overlay_kicker": { + "name": "overlay_kicker", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "overlay_headline": { + "name": "overlay_headline", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'EXZELLENZ HAT\nEINEN NAMEN.'" + }, + "mobile_watermark": { + "name": "mobile_watermark", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Exzellenz\nseit 2005'" + }, + "menu_label": { + "name": "menu_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Menü'" + }, + "open_label": { + "name": "open_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Navigation öffnen'" + }, + "close_label": { + "name": "close_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Menü schließen'" + }, + "dialog_label": { + "name": "dialog_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Navigation'" + }, + "overview_label": { + "name": "overview_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Überblick'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "header_logo_idx": { + "name": "header_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_logo_id_media_id_fk": { + "name": "header_logo_id_media_id_fk", + "tableFrom": "header", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_ctas": { + "name": "footer_ctas", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "variant": { + "name": "variant", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'primary'" + } + }, + "indexes": { + "footer_ctas_order_idx": { + "name": "footer_ctas_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_ctas_parent_id_idx": { + "name": "footer_ctas_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_ctas_parent_id_fk": { + "name": "footer_ctas_parent_id_fk", + "tableFrom": "footer_ctas", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_link_columns_links": { + "name": "footer_link_columns_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_link_columns_links_order_idx": { + "name": "footer_link_columns_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_link_columns_links_parent_id_idx": { + "name": "footer_link_columns_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_link_columns_links_parent_id_fk": { + "name": "footer_link_columns_links_parent_id_fk", + "tableFrom": "footer_link_columns_links", + "tableTo": "footer_link_columns", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_link_columns": { + "name": "footer_link_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_link_columns_order_idx": { + "name": "footer_link_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_link_columns_parent_id_idx": { + "name": "footer_link_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_link_columns_parent_id_fk": { + "name": "footer_link_columns_parent_id_fk", + "tableFrom": "footer_link_columns", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_partner_logos": { + "name": "footer_partner_logos", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "alt": { + "name": "alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_partner_logos_order_idx": { + "name": "footer_partner_logos_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_partner_logos_parent_id_idx": { + "name": "footer_partner_logos_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "footer_partner_logos_image_idx": { + "name": "footer_partner_logos_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_partner_logos_image_id_media_id_fk": { + "name": "footer_partner_logos_image_id_media_id_fk", + "tableFrom": "footer_partner_logos", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "footer_partner_logos_parent_id_fk": { + "name": "footer_partner_logos_parent_id_fk", + "tableFrom": "footer_partner_logos", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_social_links": { + "name": "footer_social_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_social_links_order_idx": { + "name": "footer_social_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_social_links_parent_id_idx": { + "name": "footer_social_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_social_links_parent_id_fk": { + "name": "footer_social_links_parent_id_fk", + "tableFrom": "footer_social_links", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer": { + "name": "footer", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "headline_prefix": { + "name": "headline_prefix", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Der Preis des'" + }, + "headline_accent": { + "name": "headline_accent", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischen'" + }, + "headline_suffix": { + "name": "headline_suffix", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Mittelstands'" + }, + "since_label": { + "name": "since_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Exzellenz seit 2005'" + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'2026'" + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Die renommierteste Auszeichnung für herausragende Unternehmen des bayerischen Mittelstands.'" + }, + "copyright": { + "name": "copyright", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'© 2026 Bayerischer Mittelstandspreis · Alle Rechte vorbehalten'" + }, + "partner_label": { + "name": "partner_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Partner'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "footer_logo_idx": { + "name": "footer_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_logo_id_media_id_fk": { + "name": "footer_logo_id_media_id_fk", + "tableFrom": "footer", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "site_settings": { + "name": "site_settings", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "skyline_image_id": { + "name": "skyline_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generic_page_kicker": { + "name": "generic_page_kicker", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'CMS'" + }, + "generic_page_title": { + "name": "generic_page_title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Seite'" + }, + "generic_page_description": { + "name": "generic_page_description", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Diese Route wird aus Payload CMS geladen. Ergänze Inhalte im entsprechenden Collection-Dokument.'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "site_settings_skyline_image_idx": { + "name": "site_settings_skyline_image_idx", + "columns": [ + "skyline_image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "site_settings_skyline_image_id_media_id_fk": { + "name": "site_settings_skyline_image_id_media_id_fk", + "tableFrom": "site_settings", + "tableTo": "media", + "columnsFrom": [ + "skyline_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "application_phase_phases": { + "name": "application_phase_phases", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "pulse": { + "name": "pulse", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "phase": { + "name": "phase", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "headline": { + "name": "headline", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "accent": { + "name": "accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bg": { + "name": "bg", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "glow": { + "name": "glow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta": { + "name": "meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "success_applications": { + "name": "success_applications", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "success_winners": { + "name": "success_winners", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "membership_cta_label": { + "name": "membership_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "membership_cta_url": { + "name": "membership_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + } + }, + "indexes": { + "application_phase_phases_order_idx": { + "name": "application_phase_phases_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "application_phase_phases_parent_id_idx": { + "name": "application_phase_phases_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "application_phase_phases_parent_id_fk": { + "name": "application_phase_phases_parent_id_fk", + "tableFrom": "application_phase_phases", + "tableTo": "application_phase", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "application_phase": { + "name": "application_phase", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "active_phase": { + "name": "active_phase", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'0'" + }, + "no_action_label": { + "name": "no_action_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kein Handlungsbedarf'" + }, + "success_applications_label": { + "name": "success_applications_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungen'" + }, + "success_winners_label": { + "name": "success_winners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + } + }, + "views": {}, + "enums": {}, + "_meta": { + "tables": {}, + "columns": {} + }, + "internal": { + "indexes": {} + }, + "id": "6f06666d-7a1b-445e-b0cc-49d89bdc4e28", + "prevId": "00000000-0000-0000-0000-000000000000" +} \ No newline at end of file diff --git a/src/migrations/20260630_172754_network_partner_logo_uploads.ts b/src/migrations/20260630_172754_network_partner_logo_uploads.ts new file mode 100644 index 0000000..10a4dd5 --- /dev/null +++ b/src/migrations/20260630_172754_network_partner_logo_uploads.ts @@ -0,0 +1,70 @@ +import { MigrateUpArgs, MigrateDownArgs, sql } from '@payloadcms/db-sqlite' + +export async function up({ db, payload: _payload, req: _req }: MigrateUpArgs): Promise { + await db.run(sql`ALTER TABLE \`network_partners\` ADD \`logo_id\` integer REFERENCES media(id);`) + await db.run(sql`ALTER TABLE \`network_partners\` ADD \`logo_alt\` text;`) + await db.run(sql`CREATE INDEX \`network_partners_logo_idx\` ON \`network_partners\` (\`logo_id\`);`) + await db.run(sql`ALTER TABLE \`_network_partners_v\` ADD \`logo_id\` integer REFERENCES media(id);`) + await db.run(sql`ALTER TABLE \`_network_partners_v\` ADD \`logo_alt\` text;`) + await db.run(sql`CREATE INDEX \`_network_partners_v_logo_idx\` ON \`_network_partners_v\` (\`logo_id\`);`) +} + +export async function down({ db, payload: _payload, req: _req }: MigrateDownArgs): Promise { + await db.run(sql`PRAGMA foreign_keys=OFF;`) + await db.run(sql`CREATE TABLE \`__new_network_partners\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`stable_id\` text, + \`name\` text, + \`role\` text, + \`tier\` numeric, + \`desc\` text, + \`full_desc\` text, + \`logo_kind\` text DEFAULT 'text', + \`logo_text\` text, + \`logo_subtext\` text, + \`logo_color\` text, + \`industry\` text, + \`location\` text, + \`website\` text, + \`linkedin\` text, + \`hero_img\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new_network_partners\`("_order", "_parent_id", "id", "stable_id", "name", "role", "tier", "desc", "full_desc", "logo_kind", "logo_text", "logo_subtext", "logo_color", "industry", "location", "website", "linkedin", "hero_img") SELECT "_order", "_parent_id", "id", "stable_id", "name", "role", "tier", "desc", "full_desc", "logo_kind", "logo_text", "logo_subtext", "logo_color", "industry", "location", "website", "linkedin", "hero_img" FROM \`network_partners\`;`) + await db.run(sql`DROP TABLE \`network_partners\`;`) + await db.run(sql`ALTER TABLE \`__new_network_partners\` RENAME TO \`network_partners\`;`) + await db.run(sql`PRAGMA foreign_keys=ON;`) + await db.run(sql`CREATE INDEX \`network_partners_order_idx\` ON \`network_partners\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`network_partners_parent_id_idx\` ON \`network_partners\` (\`_parent_id\`);`) + await db.run(sql`CREATE TABLE \`__new__network_partners_v\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` integer PRIMARY KEY NOT NULL, + \`stable_id\` text, + \`name\` text, + \`role\` text, + \`tier\` numeric, + \`desc\` text, + \`full_desc\` text, + \`logo_kind\` text DEFAULT 'text', + \`logo_text\` text, + \`logo_subtext\` text, + \`logo_color\` text, + \`industry\` text, + \`location\` text, + \`website\` text, + \`linkedin\` text, + \`hero_img\` text, + \`_uuid\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`_pages_v\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new__network_partners_v\`("_order", "_parent_id", "id", "stable_id", "name", "role", "tier", "desc", "full_desc", "logo_kind", "logo_text", "logo_subtext", "logo_color", "industry", "location", "website", "linkedin", "hero_img", "_uuid") SELECT "_order", "_parent_id", "id", "stable_id", "name", "role", "tier", "desc", "full_desc", "logo_kind", "logo_text", "logo_subtext", "logo_color", "industry", "location", "website", "linkedin", "hero_img", "_uuid" FROM \`_network_partners_v\`;`) + await db.run(sql`DROP TABLE \`_network_partners_v\`;`) + await db.run(sql`ALTER TABLE \`__new__network_partners_v\` RENAME TO \`_network_partners_v\`;`) + await db.run(sql`CREATE INDEX \`_network_partners_v_order_idx\` ON \`_network_partners_v\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`_network_partners_v_parent_id_idx\` ON \`_network_partners_v\` (\`_parent_id\`);`) +} diff --git a/src/migrations/20260630_175614_partners_collection.json b/src/migrations/20260630_175614_partners_collection.json new file mode 100644 index 0000000..747a620 --- /dev/null +++ b/src/migrations/20260630_175614_partners_collection.json @@ -0,0 +1,33742 @@ +{ + "version": "6", + "dialect": "sqlite", + "tables": { + "pages_hero_links": { + "name": "pages_hero_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_hero_links_order_idx": { + "name": "pages_hero_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_hero_links_parent_id_idx": { + "name": "pages_hero_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_hero_links_parent_id_fk": { + "name": "pages_hero_links_parent_id_fk", + "tableFrom": "pages_hero_links", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_cta_links": { + "name": "pages_blocks_cta_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_blocks_cta_links_order_idx": { + "name": "pages_blocks_cta_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_cta_links_parent_id_idx": { + "name": "pages_blocks_cta_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_cta_links_parent_id_fk": { + "name": "pages_blocks_cta_links_parent_id_fk", + "tableFrom": "pages_blocks_cta_links", + "tableTo": "pages_blocks_cta", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_cta": { + "name": "pages_blocks_cta", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_cta_order_idx": { + "name": "pages_blocks_cta_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_cta_parent_id_idx": { + "name": "pages_blocks_cta_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_cta_path_idx": { + "name": "pages_blocks_cta_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_cta_parent_id_fk": { + "name": "pages_blocks_cta_parent_id_fk", + "tableFrom": "pages_blocks_cta", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_content_columns": { + "name": "pages_blocks_content_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "size": { + "name": "size", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oneThird'" + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_link": { + "name": "enable_link", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_blocks_content_columns_order_idx": { + "name": "pages_blocks_content_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_content_columns_parent_id_idx": { + "name": "pages_blocks_content_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_content_columns_parent_id_fk": { + "name": "pages_blocks_content_columns_parent_id_fk", + "tableFrom": "pages_blocks_content_columns", + "tableTo": "pages_blocks_content", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_content": { + "name": "pages_blocks_content", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_content_order_idx": { + "name": "pages_blocks_content_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_content_parent_id_idx": { + "name": "pages_blocks_content_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_content_path_idx": { + "name": "pages_blocks_content_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_content_parent_id_fk": { + "name": "pages_blocks_content_parent_id_fk", + "tableFrom": "pages_blocks_content", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_media_block": { + "name": "pages_blocks_media_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_media_block_order_idx": { + "name": "pages_blocks_media_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_media_block_parent_id_idx": { + "name": "pages_blocks_media_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_media_block_path_idx": { + "name": "pages_blocks_media_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "pages_blocks_media_block_media_idx": { + "name": "pages_blocks_media_block_media_idx", + "columns": [ + "media_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_media_block_media_id_media_id_fk": { + "name": "pages_blocks_media_block_media_id_media_id_fk", + "tableFrom": "pages_blocks_media_block", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_media_block_parent_id_fk": { + "name": "pages_blocks_media_block_parent_id_fk", + "tableFrom": "pages_blocks_media_block", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_archive": { + "name": "pages_blocks_archive", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "populate_by": { + "name": "populate_by", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'collection'" + }, + "relation_to": { + "name": "relation_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'posts'" + }, + "limit": { + "name": "limit", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 10 + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_archive_order_idx": { + "name": "pages_blocks_archive_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_archive_parent_id_idx": { + "name": "pages_blocks_archive_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_archive_path_idx": { + "name": "pages_blocks_archive_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_archive_parent_id_fk": { + "name": "pages_blocks_archive_parent_id_fk", + "tableFrom": "pages_blocks_archive", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_form_block": { + "name": "pages_blocks_form_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "form_id": { + "name": "form_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_intro": { + "name": "enable_intro", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_form_block_order_idx": { + "name": "pages_blocks_form_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_form_block_parent_id_idx": { + "name": "pages_blocks_form_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_form_block_path_idx": { + "name": "pages_blocks_form_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "pages_blocks_form_block_form_idx": { + "name": "pages_blocks_form_block_form_idx", + "columns": [ + "form_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_form_block_form_id_forms_id_fk": { + "name": "pages_blocks_form_block_form_id_forms_id_fk", + "tableFrom": "pages_blocks_form_block", + "tableTo": "forms", + "columnsFrom": [ + "form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_form_block_parent_id_fk": { + "name": "pages_blocks_form_block_parent_id_fk", + "tableFrom": "pages_blocks_form_block", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_hero_partners": { + "name": "pages_home_hero_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_hero_partners_order_idx": { + "name": "pages_home_hero_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_hero_partners_parent_id_idx": { + "name": "pages_home_hero_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_hero_partners_parent_id_fk": { + "name": "pages_home_hero_partners_parent_id_fk", + "tableFrom": "pages_home_hero_partners", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_quick_check_criteria": { + "name": "pages_home_quick_check_criteria", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_quick_check_criteria_order_idx": { + "name": "pages_home_quick_check_criteria_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_quick_check_criteria_parent_id_idx": { + "name": "pages_home_quick_check_criteria_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_quick_check_criteria_parent_id_fk": { + "name": "pages_home_quick_check_criteria_parent_id_fk", + "tableFrom": "pages_home_quick_check_criteria", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_intro_stats": { + "name": "pages_home_intro_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_intro_stats_order_idx": { + "name": "pages_home_intro_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_intro_stats_parent_id_idx": { + "name": "pages_home_intro_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_intro_stats_parent_id_fk": { + "name": "pages_home_intro_stats_parent_id_fk", + "tableFrom": "pages_home_intro_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_testimonials_items": { + "name": "pages_home_testimonials_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_testimonials_items_order_idx": { + "name": "pages_home_testimonials_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_testimonials_items_parent_id_idx": { + "name": "pages_home_testimonials_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_home_testimonials_items_image_idx": { + "name": "pages_home_testimonials_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_testimonials_items_image_id_media_id_fk": { + "name": "pages_home_testimonials_items_image_id_media_id_fk", + "tableFrom": "pages_home_testimonials_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_testimonials_items_parent_id_fk": { + "name": "pages_home_testimonials_items_parent_id_fk", + "tableFrom": "pages_home_testimonials_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_benefits_items": { + "name": "pages_home_benefits_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_benefits_items_order_idx": { + "name": "pages_home_benefits_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_benefits_items_parent_id_idx": { + "name": "pages_home_benefits_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_benefits_items_parent_id_fk": { + "name": "pages_home_benefits_items_parent_id_fk", + "tableFrom": "pages_home_benefits_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_application_benefits": { + "name": "pages_home_application_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_application_benefits_order_idx": { + "name": "pages_home_application_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_application_benefits_parent_id_idx": { + "name": "pages_home_application_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_application_benefits_parent_id_fk": { + "name": "pages_home_application_benefits_parent_id_fk", + "tableFrom": "pages_home_application_benefits", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_self_steps": { + "name": "home_self_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "home_self_steps_order_idx": { + "name": "home_self_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_self_steps_parent_id_idx": { + "name": "home_self_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_self_steps_parent_id_fk": { + "name": "home_self_steps_parent_id_fk", + "tableFrom": "home_self_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_nom_steps": { + "name": "home_nom_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "home_nom_steps_order_idx": { + "name": "home_nom_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_nom_steps_parent_id_idx": { + "name": "home_nom_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_nom_steps_parent_id_fk": { + "name": "home_nom_steps_parent_id_fk", + "tableFrom": "home_nom_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_emp_opts": { + "name": "home_emp_opts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "home_emp_opts_order_idx": { + "name": "home_emp_opts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_emp_opts_parent_id_idx": { + "name": "home_emp_opts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_emp_opts_parent_id_fk": { + "name": "home_emp_opts_parent_id_fk", + "tableFrom": "home_emp_opts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_items": { + "name": "pages_contact_info_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "lines": { + "name": "lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_items_order_idx": { + "name": "pages_contact_info_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_items_parent_id_idx": { + "name": "pages_contact_info_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_items_parent_id_fk": { + "name": "pages_contact_info_items_parent_id_fk", + "tableFrom": "pages_contact_info_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_form_copy_steps": { + "name": "pages_contact_info_form_copy_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_form_copy_steps_order_idx": { + "name": "pages_contact_info_form_copy_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_form_copy_steps_parent_id_idx": { + "name": "pages_contact_info_form_copy_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_form_copy_steps_parent_id_fk": { + "name": "pages_contact_info_form_copy_steps_parent_id_fk", + "tableFrom": "pages_contact_info_form_copy_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_form_copy_subjects": { + "name": "pages_contact_info_form_copy_subjects", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_form_copy_subjects_order_idx": { + "name": "pages_contact_info_form_copy_subjects_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_form_copy_subjects_parent_id_idx": { + "name": "pages_contact_info_form_copy_subjects_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_form_copy_subjects_parent_id_fk": { + "name": "pages_contact_info_form_copy_subjects_parent_id_fk", + "tableFrom": "pages_contact_info_form_copy_subjects", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_deadlines_items": { + "name": "pages_contact_deadlines_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_deadlines_items_order_idx": { + "name": "pages_contact_deadlines_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_deadlines_items_parent_id_idx": { + "name": "pages_contact_deadlines_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_deadlines_items_parent_id_fk": { + "name": "pages_contact_deadlines_items_parent_id_fk", + "tableFrom": "pages_contact_deadlines_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_faq_items": { + "name": "pages_contact_faq_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_faq_items_order_idx": { + "name": "pages_contact_faq_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_faq_items_parent_id_idx": { + "name": "pages_contact_faq_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_faq_items_parent_id_fk": { + "name": "pages_contact_faq_items_parent_id_fk", + "tableFrom": "pages_contact_faq_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "proc_steps": { + "name": "proc_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + } + }, + "indexes": { + "proc_steps_order_idx": { + "name": "proc_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "proc_steps_parent_id_idx": { + "name": "proc_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "proc_steps_parent_id_fk": { + "name": "proc_steps_parent_id_fk", + "tableFrom": "proc_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "elig_crit": { + "name": "elig_crit", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + } + }, + "indexes": { + "elig_crit_order_idx": { + "name": "elig_crit_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "elig_crit_parent_id_idx": { + "name": "elig_crit_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "elig_crit_parent_id_fk": { + "name": "elig_crit_parent_id_fk", + "tableFrom": "elig_crit", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "elig_notes": { + "name": "elig_notes", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'building2'" + } + }, + "indexes": { + "elig_notes_order_idx": { + "name": "elig_notes_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "elig_notes_parent_id_idx": { + "name": "elig_notes_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "elig_notes_parent_id_fk": { + "name": "elig_notes_parent_id_fk", + "tableFrom": "elig_notes", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "app_inst": { + "name": "app_inst", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "app_inst_order_idx": { + "name": "app_inst_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "app_inst_parent_id_idx": { + "name": "app_inst_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "app_inst_parent_id_fk": { + "name": "app_inst_parent_id_fk", + "tableFrom": "app_inst", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "way_facts": { + "name": "way_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "way_facts_order_idx": { + "name": "way_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "way_facts_parent_id_idx": { + "name": "way_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "way_facts_parent_id_fk": { + "name": "way_facts_parent_id_fk", + "tableFrom": "way_facts", + "tableTo": "app_ways", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "app_ways": { + "name": "app_ways", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'send'" + }, + "featured": { + "name": "featured", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "list_type": { + "name": "list_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'facts'" + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + } + }, + "indexes": { + "app_ways_order_idx": { + "name": "app_ways_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "app_ways_parent_id_idx": { + "name": "app_ways_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "app_ways_parent_id_fk": { + "name": "app_ways_parent_id_fk", + "tableFrom": "app_ways", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "date_mob": { + "name": "date_mob", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "date_mob_order_idx": { + "name": "date_mob_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "date_mob_parent_id_idx": { + "name": "date_mob_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "date_mob_parent_id_fk": { + "name": "date_mob_parent_id_fk", + "tableFrom": "date_mob", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "date_desk": { + "name": "date_desk", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "date_desk_order_idx": { + "name": "date_desk_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "date_desk_parent_id_idx": { + "name": "date_desk_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "date_desk_parent_id_fk": { + "name": "date_desk_parent_id_fk", + "tableFrom": "date_desk", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "award_cards": { + "name": "award_cards", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "article_cta_label": { + "name": "article_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel lesen'" + }, + "article_cta_url": { + "name": "article_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "mailto_cta_label": { + "name": "mailto_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "mailto_cta_url": { + "name": "mailto_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mailto:info@bmp-bayern.de'" + } + }, + "indexes": { + "award_cards_order_idx": { + "name": "award_cards_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "award_cards_parent_id_idx": { + "name": "award_cards_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "award_cards_image_idx": { + "name": "award_cards_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "award_cards_image_id_media_id_fk": { + "name": "award_cards_image_id_media_id_fk", + "tableFrom": "award_cards", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "award_cards_parent_id_fk": { + "name": "award_cards_parent_id_fk", + "tableFrom": "award_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_facts": { + "name": "form_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "form_facts_order_idx": { + "name": "form_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "form_facts_parent_id_idx": { + "name": "form_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_facts_parent_id_fk": { + "name": "form_facts_parent_id_fk", + "tableFrom": "form_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "self_steps": { + "name": "self_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "self_steps_order_idx": { + "name": "self_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "self_steps_parent_id_idx": { + "name": "self_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "self_steps_parent_id_fk": { + "name": "self_steps_parent_id_fk", + "tableFrom": "self_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "nom_steps": { + "name": "nom_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "nom_steps_order_idx": { + "name": "nom_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "nom_steps_parent_id_idx": { + "name": "nom_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "nom_steps_parent_id_fk": { + "name": "nom_steps_parent_id_fk", + "tableFrom": "nom_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "emp_opts": { + "name": "emp_opts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "emp_opts_order_idx": { + "name": "emp_opts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "emp_opts_parent_id_idx": { + "name": "emp_opts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "emp_opts_parent_id_fk": { + "name": "emp_opts_parent_id_fk", + "tableFrom": "emp_opts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_hero_stats": { + "name": "about_hero_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_hero_stats_order_idx": { + "name": "about_hero_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_hero_stats_parent_id_idx": { + "name": "about_hero_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_hero_stats_parent_id_fk": { + "name": "about_hero_stats_parent_id_fk", + "tableFrom": "about_hero_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_prize_body": { + "name": "about_prize_body", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_prize_body_order_idx": { + "name": "about_prize_body_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_prize_body_parent_id_idx": { + "name": "about_prize_body_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_prize_body_parent_id_fk": { + "name": "about_prize_body_parent_id_fk", + "tableFrom": "about_prize_body", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_prize_facts": { + "name": "about_prize_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_prize_facts_order_idx": { + "name": "about_prize_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_prize_facts_parent_id_idx": { + "name": "about_prize_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_prize_facts_parent_id_fk": { + "name": "about_prize_facts_parent_id_fk", + "tableFrom": "about_prize_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_mid_body": { + "name": "about_mid_body", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_mid_body_order_idx": { + "name": "about_mid_body_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_mid_body_parent_id_idx": { + "name": "about_mid_body_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_mid_body_parent_id_fk": { + "name": "about_mid_body_parent_id_fk", + "tableFrom": "about_mid_body", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_tst_items": { + "name": "about_tst_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_tst_items_order_idx": { + "name": "about_tst_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_tst_items_parent_id_idx": { + "name": "about_tst_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "about_tst_items_image_idx": { + "name": "about_tst_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_tst_items_image_id_media_id_fk": { + "name": "about_tst_items_image_id_media_id_fk", + "tableFrom": "about_tst_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "about_tst_items_parent_id_fk": { + "name": "about_tst_items_parent_id_fk", + "tableFrom": "about_tst_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_hist_items": { + "name": "about_hist_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_hist_items_order_idx": { + "name": "about_hist_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_hist_items_parent_id_idx": { + "name": "about_hist_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_hist_items_parent_id_fk": { + "name": "about_hist_items_parent_id_fk", + "tableFrom": "about_hist_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_goal_items": { + "name": "about_goal_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_goal_items_order_idx": { + "name": "about_goal_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_goal_items_parent_id_idx": { + "name": "about_goal_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_goal_items_parent_id_fk": { + "name": "about_goal_items_parent_id_fk", + "tableFrom": "about_goal_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_val_items": { + "name": "about_val_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_val_items_order_idx": { + "name": "about_val_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_val_items_parent_id_idx": { + "name": "about_val_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_val_items_parent_id_fk": { + "name": "about_val_items_parent_id_fk", + "tableFrom": "about_val_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "imp_sections": { + "name": "imp_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "imp_sections_order_idx": { + "name": "imp_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "imp_sections_parent_id_idx": { + "name": "imp_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "imp_sections_parent_id_fk": { + "name": "imp_sections_parent_id_fk", + "tableFrom": "imp_sections", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "data_sections": { + "name": "data_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "data_sections_order_idx": { + "name": "data_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "data_sections_parent_id_idx": { + "name": "data_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "data_sections_parent_id_fk": { + "name": "data_sections_parent_id_fk", + "tableFrom": "data_sections", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_press_index_events_status_labels": { + "name": "pages_press_index_events_status_labels", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_press_index_events_status_labels_order_idx": { + "name": "pages_press_index_events_status_labels_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_press_index_events_status_labels_parent_id_idx": { + "name": "pages_press_index_events_status_labels_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_press_index_events_status_labels_parent_id_fk": { + "name": "pages_press_index_events_status_labels_parent_id_fk", + "tableFrom": "pages_press_index_events_status_labels", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "press_events_fb": { + "name": "press_events_fb", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "press_events_fb_order_idx": { + "name": "press_events_fb_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "press_events_fb_parent_id_idx": { + "name": "press_events_fb_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "press_events_fb_image_idx": { + "name": "press_events_fb_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "press_events_fb_image_id_media_id_fk": { + "name": "press_events_fb_image_id_media_id_fk", + "tableFrom": "press_events_fb", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "press_events_fb_parent_id_fk": { + "name": "press_events_fb_parent_id_fk", + "tableFrom": "press_events_fb", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "press_news_fb": { + "name": "press_news_fb", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "press_news_fb_order_idx": { + "name": "press_news_fb_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "press_news_fb_parent_id_idx": { + "name": "press_news_fb_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "press_news_fb_image_idx": { + "name": "press_news_fb_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "press_news_fb_image_id_media_id_fk": { + "name": "press_news_fb_image_id_media_id_fk", + "tableFrom": "press_news_fb", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "press_news_fb_parent_id_fk": { + "name": "press_news_fb_parent_id_fk", + "tableFrom": "press_news_fb", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "upload_stats": { + "name": "upload_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "upload_stats_order_idx": { + "name": "upload_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "upload_stats_parent_id_idx": { + "name": "upload_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "upload_stats_parent_id_fk": { + "name": "upload_stats_parent_id_fk", + "tableFrom": "upload_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "upload_req_cards": { + "name": "upload_req_cards", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "upload_req_cards_order_idx": { + "name": "upload_req_cards_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "upload_req_cards_parent_id_idx": { + "name": "upload_req_cards_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "upload_req_cards_parent_id_fk": { + "name": "upload_req_cards_parent_id_fk", + "tableFrom": "upload_req_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_patrons": { + "name": "network_patrons", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line1": { + "name": "title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line2": { + "name": "title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "institution": { + "name": "institution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_patrons_order_idx": { + "name": "network_patrons_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_patrons_parent_id_idx": { + "name": "network_patrons_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_patrons_image_upload_idx": { + "name": "network_patrons_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_patrons_image_upload_id_media_id_fk": { + "name": "network_patrons_image_upload_id_media_id_fk", + "tableFrom": "network_patrons", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_patrons_parent_id_fk": { + "name": "network_patrons_parent_id_fk", + "tableFrom": "network_patrons", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury_stats": { + "name": "network_jury_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_stats_order_idx": { + "name": "network_jury_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_stats_parent_id_idx": { + "name": "network_jury_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_stats_parent_id_fk": { + "name": "network_jury_stats_parent_id_fk", + "tableFrom": "network_jury_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury_d_stats": { + "name": "network_jury_d_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_d_stats_order_idx": { + "name": "network_jury_d_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_d_stats_parent_id_idx": { + "name": "network_jury_d_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_d_stats_parent_id_fk": { + "name": "network_jury_d_stats_parent_id_fk", + "tableFrom": "network_jury_d_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury": { + "name": "network_jury", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bio": { + "name": "bio", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_order_idx": { + "name": "network_jury_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_parent_id_idx": { + "name": "network_jury_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_jury_image_upload_idx": { + "name": "network_jury_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_image_upload_id_media_id_fk": { + "name": "network_jury_image_upload_id_media_id_fk", + "tableFrom": "network_jury", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_jury_parent_id_fk": { + "name": "network_jury_parent_id_fk", + "tableFrom": "network_jury", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_eval": { + "name": "network_eval", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_eval_order_idx": { + "name": "network_eval_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_eval_parent_id_idx": { + "name": "network_eval_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_eval_parent_id_fk": { + "name": "network_eval_parent_id_fk", + "tableFrom": "network_eval", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_tiers": { + "name": "network_tiers", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_tiers_order_idx": { + "name": "network_tiers_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_tiers_parent_id_idx": { + "name": "network_tiers_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_tiers_parent_id_fk": { + "name": "network_tiers_parent_id_fk", + "tableFrom": "network_tiers", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_sponsor_bens": { + "name": "network_sponsor_bens", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sub": { + "name": "sub", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_sponsor_bens_order_idx": { + "name": "network_sponsor_bens_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_sponsor_bens_parent_id_idx": { + "name": "network_sponsor_bens_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_sponsor_bens_parent_id_fk": { + "name": "network_sponsor_bens_parent_id_fk", + "tableFrom": "network_sponsor_bens", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_form_steps": { + "name": "network_form_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_form_steps_order_idx": { + "name": "network_form_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_form_steps_parent_id_idx": { + "name": "network_form_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_form_steps_parent_id_fk": { + "name": "network_form_steps_parent_id_fk", + "tableFrom": "network_form_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_form_pkgs": { + "name": "network_form_pkgs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_form_pkgs_order_idx": { + "name": "network_form_pkgs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_form_pkgs_parent_id_idx": { + "name": "network_form_pkgs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_form_pkgs_parent_id_fk": { + "name": "network_form_pkgs_parent_id_fk", + "tableFrom": "network_form_pkgs", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_hero_stats": { + "name": "member_hero_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_hero_stats_order_idx": { + "name": "member_hero_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_hero_stats_parent_id_idx": { + "name": "member_hero_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_hero_stats_parent_id_fk": { + "name": "member_hero_stats_parent_id_fk", + "tableFrom": "member_hero_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_benefits": { + "name": "member_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'users'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_benefits_order_idx": { + "name": "member_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_benefits_parent_id_idx": { + "name": "member_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_benefits_parent_id_fk": { + "name": "member_benefits_parent_id_fk", + "tableFrom": "member_benefits", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_about_copy": { + "name": "member_about_copy", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_about_copy_order_idx": { + "name": "member_about_copy_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_about_copy_parent_id_idx": { + "name": "member_about_copy_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_about_copy_parent_id_fk": { + "name": "member_about_copy_parent_id_fk", + "tableFrom": "member_about_copy", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_about_facts": { + "name": "member_about_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_about_facts_order_idx": { + "name": "member_about_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_about_facts_parent_id_idx": { + "name": "member_about_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_about_facts_parent_id_fk": { + "name": "member_about_facts_parent_id_fk", + "tableFrom": "member_about_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_pricing": { + "name": "member_pricing", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "max": { + "name": "max", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "annual": { + "name": "annual", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_pricing_order_idx": { + "name": "member_pricing_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_pricing_parent_id_idx": { + "name": "member_pricing_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_pricing_parent_id_fk": { + "name": "member_pricing_parent_id_fk", + "tableFrom": "member_pricing", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_app_options": { + "name": "member_app_options", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "number": { + "name": "number", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "eyebrow": { + "name": "eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "file_id": { + "name": "file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "download": { + "name": "download", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_app_options_order_idx": { + "name": "member_app_options_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_app_options_parent_id_idx": { + "name": "member_app_options_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "member_app_options_file_idx": { + "name": "member_app_options_file_idx", + "columns": [ + "file_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_app_options_file_id_media_id_fk": { + "name": "member_app_options_file_id_media_id_fk", + "tableFrom": "member_app_options", + "tableTo": "media", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "member_app_options_parent_id_fk": { + "name": "member_app_options_parent_id_fk", + "tableFrom": "member_app_options", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_promises": { + "name": "member_promises", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_promises_order_idx": { + "name": "member_promises_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_promises_parent_id_idx": { + "name": "member_promises_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_promises_parent_id_fk": { + "name": "member_promises_parent_id_fk", + "tableFrom": "member_promises", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_quotes": { + "name": "member_quotes", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "initials": { + "name": "initials", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_quotes_order_idx": { + "name": "member_quotes_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_quotes_parent_id_idx": { + "name": "member_quotes_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_quotes_parent_id_fk": { + "name": "member_quotes_parent_id_fk", + "tableFrom": "member_quotes", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_faq": { + "name": "member_faq", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_faq_order_idx": { + "name": "member_faq_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_faq_parent_id_idx": { + "name": "member_faq_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_faq_parent_id_fk": { + "name": "member_faq_parent_id_fk", + "tableFrom": "member_faq", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages": { + "name": "pages", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_type": { + "name": "hero_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'lowImpact'" + }, + "hero_rich_text": { + "name": "hero_rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_media_id": { + "name": "hero_media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_hero_background_image_id": { + "name": "home_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_hero_image_alt": { + "name": "home_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Awards Gala'" + }, + "home_hero_badge": { + "name": "home_hero_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026 geschlossen'" + }, + "home_hero_heading_line1": { + "name": "home_hero_heading_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERNS BESTE'" + }, + "home_hero_heading_accent": { + "name": "home_hero_heading_accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTÄNDLER.'" + }, + "home_hero_description": { + "name": "home_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis würdigt herausragende Leistungen – von Innovation über Nachhaltigkeit bis hin zur Exzellenz.'" + }, + "home_hero_primary_cta_label": { + "name": "home_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "home_hero_primary_cta_url": { + "name": "home_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "home_hero_secondary_cta_label": { + "name": "home_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "home_hero_secondary_cta_url": { + "name": "home_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "home_hero_video_label": { + "name": "home_hero_video_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Film abspielen'" + }, + "home_hero_partners_label": { + "name": "home_hero_partners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unsere Partner'" + }, + "home_quick_check_eyebrow": { + "name": "home_quick_check_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "home_quick_check_heading": { + "name": "home_quick_check_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SIND SIE\nBERECHTIGT?'" + }, + "home_quick_check_image_id": { + "name": "home_quick_check_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_quick_check_image_alt": { + "name": "home_quick_check_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bühne'" + }, + "home_quick_check_body": { + "name": "home_quick_check_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte KMU im Freistaat. Fünf Kriterien entscheiden, erfüllen Sie alle fünf, steht Ihrer Bewerbung nichts im Weg.'" + }, + "home_quick_check_note": { + "name": "home_quick_check_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auch ein Verbund bzw. eine Gemeinschaft von mittelständischen Unternehmen oder von mittelständischen Unternehmen und Organisationen/Institutionen mit Schwerpunkt in Bayern kann teilnehmen.'" + }, + "home_quick_check_cta_label": { + "name": "home_quick_check_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Weg zum Preis'" + }, + "home_quick_check_cta_url": { + "name": "home_quick_check_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "home_intro_eyebrow": { + "name": "home_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ein Gewinn für alle'" + }, + "home_intro_heading": { + "name": "home_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSZEICHNUNG\nFÜR DIE BESTEN.'" + }, + "home_intro_image_id": { + "name": "home_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_intro_image_alt": { + "name": "home_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Auszeichnung'" + }, + "home_intro_quote": { + "name": "home_intro_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Ein Unternehmen zu gründen erfordert nicht allein spezielle Fähigkeiten. Es erfordert Persönlichkeit!“'" + }, + "home_intro_body": { + "name": "home_intro_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir suchen Vorbilder, die sich trotz aller Risiken nicht scheuen, Visionen in Businesspläne und Ideen in Unternehmungen zu verwandeln, und das mit großem persönlichen Einsatz und Verantwortung für Ihre Mitarbeiter. Seit vielen Jahren würdigen wir herausragende unternehmerische Leistungen im Freistaat.'" + }, + "home_intro_cta_label": { + "name": "home_intro_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr über den Preis'" + }, + "home_intro_cta_url": { + "name": "home_intro_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/der-bmp'" + }, + "home_winners_eyebrow": { + "name": "home_winners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Success Stories'" + }, + "home_winners_heading": { + "name": "home_winners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DIE BESTEN UNTERNEHMEN IN BAYERN'" + }, + "home_winners_cta_label": { + "name": "home_winners_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "home_winners_cta_url": { + "name": "home_winners_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "home_winners_fallback_image_id": { + "name": "home_winners_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_winners_card_fallback_title": { + "name": "home_winners_card_fallback_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "home_winners_hover_label": { + "name": "home_winners_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "home_testimonials_eyebrow": { + "name": "home_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "home_testimonials_heading": { + "name": "home_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "home_testimonials_desktop_heading": { + "name": "home_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "home_testimonials_year_prefix": { + "name": "home_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "home_testimonials_previous_label": { + "name": "home_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "home_testimonials_next_label": { + "name": "home_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "home_testimonials_slide_label_prefix": { + "name": "home_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "home_benefits_eyebrow": { + "name": "home_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr als nur ein Preis'" + }, + "home_benefits_heading": { + "name": "home_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM SICH DIE\nTEILNAHME LOHNT.'" + }, + "home_benefits_image_id": { + "name": "home_benefits_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_benefits_image_alt": { + "name": "home_benefits_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Netzwerk'" + }, + "home_benefits_image_label": { + "name": "home_benefits_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala-Netzwerk'" + }, + "home_application_eyebrow": { + "name": "home_application_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Chance ergreifen'" + }, + "home_application_heading": { + "name": "home_application_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN\nAUCH SIE\nGESCHICHTE.'" + }, + "home_application_body": { + "name": "home_application_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands – vollständig kostenfrei.'" + }, + "home_application_award_image_id": { + "name": "home_application_award_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_application_award_image_alt": { + "name": "home_application_award_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bayerischer Mittelstandspreis'" + }, + "home_application_award_caption": { + "name": "home_application_award_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "home_application_form_eyebrow": { + "name": "home_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung 2026'" + }, + "home_application_form_title": { + "name": "home_application_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos bewerben'" + }, + "home_application_footnote": { + "name": "home_application_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos und unverbindlich –'" + }, + "home_application_footnote_strong": { + "name": "home_application_footnote_strong", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'keine Teilnahmegebühr'" + }, + "home_form_step_complete_label": { + "name": "home_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "home_form_back_label": { + "name": "home_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "home_form_next_label": { + "name": "home_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "home_form_submit_label": { + "name": "home_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "home_form_yes_label": { + "name": "home_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "home_form_no_label": { + "name": "home_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "home_form_required_suffix": { + "name": "home_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "home_form_validation_choose": { + "name": "home_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "home_form_validation_required": { + "name": "home_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "home_form_validation_invalid_email": { + "name": "home_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "home_form_type_step_eyebrow": { + "name": "home_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "home_form_type_step_heading": { + "name": "home_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "home_form_type_step_self_title": { + "name": "home_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "home_form_type_step_self_desc": { + "name": "home_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "home_form_type_step_nomination_title": { + "name": "home_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "home_form_type_step_nomination_desc": { + "name": "home_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "home_form_eligibility_allowed_employee_values": { + "name": "home_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "home_form_eligibility_required_bayern_value": { + "name": "home_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "home_form_eligibility_eyebrow": { + "name": "home_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "home_form_eligibility_heading": { + "name": "home_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "home_form_eligibility_employees_label": { + "name": "home_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "home_form_eligibility_bayern_label": { + "name": "home_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "home_form_eligibility_owner_label": { + "name": "home_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "home_form_eligibility_ineligible_heading": { + "name": "home_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "home_form_eligibility_ineligible_body": { + "name": "home_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "home_form_eligibility_ineligible_contact_prefix": { + "name": "home_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "home_form_eligibility_ineligible_contact_email": { + "name": "home_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "home_form_self_contact_eyebrow": { + "name": "home_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "home_form_self_contact_heading": { + "name": "home_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "home_form_self_contact_company_label": { + "name": "home_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "home_form_self_contact_company_placeholder": { + "name": "home_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "home_form_self_contact_name_label": { + "name": "home_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "home_form_self_contact_name_placeholder": { + "name": "home_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "home_form_self_contact_email_label": { + "name": "home_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "home_form_self_contact_email_placeholder": { + "name": "home_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "home_form_self_contact_phone_label": { + "name": "home_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "home_form_self_contact_phone_placeholder": { + "name": "home_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "home_form_self_contact_footnote": { + "name": "home_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "home_form_self_summary_eyebrow": { + "name": "home_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "home_form_self_summary_heading": { + "name": "home_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "home_form_self_summary_company_label": { + "name": "home_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "home_form_self_summary_employees_label": { + "name": "home_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "home_form_self_summary_location_label": { + "name": "home_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "home_form_self_summary_location_prefix": { + "name": "home_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "home_form_self_summary_contact_label": { + "name": "home_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "home_form_nomination_company_eyebrow": { + "name": "home_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "home_form_nomination_company_heading": { + "name": "home_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "home_form_nomination_company_company_label": { + "name": "home_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "home_form_nomination_company_company_placeholder": { + "name": "home_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "home_form_nomination_company_industry_label": { + "name": "home_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "home_form_nomination_company_industry_placeholder": { + "name": "home_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "home_form_nomination_company_location_label": { + "name": "home_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "home_form_nomination_company_location_placeholder": { + "name": "home_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "home_form_nomination_contact_eyebrow": { + "name": "home_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "home_form_nomination_contact_heading": { + "name": "home_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "home_form_nomination_contact_name_label": { + "name": "home_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "home_form_nomination_contact_name_placeholder": { + "name": "home_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "home_form_nomination_contact_email_label": { + "name": "home_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "home_form_nomination_contact_email_placeholder": { + "name": "home_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "home_form_nomination_contact_relationship_label": { + "name": "home_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "home_form_nomination_contact_relationship_placeholder": { + "name": "home_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "home_form_nomination_contact_footnote": { + "name": "home_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "home_form_nomination_summary_eyebrow": { + "name": "home_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "home_form_nomination_summary_heading": { + "name": "home_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "home_form_nomination_summary_company_label": { + "name": "home_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "home_form_nomination_summary_industry_label": { + "name": "home_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "home_form_nomination_summary_location_label": { + "name": "home_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "home_form_nomination_summary_nominated_by_label": { + "name": "home_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "home_form_nomination_summary_empty_value": { + "name": "home_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "home_form_success_self_heading": { + "name": "home_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "home_form_success_nomination_heading": { + "name": "home_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "home_form_success_self_prefix": { + "name": "home_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "home_form_success_self_middle": { + "name": "home_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "home_form_success_self_suffix": { + "name": "home_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "home_form_success_nomination_prefix": { + "name": "home_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "home_form_success_nomination_middle": { + "name": "home_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "home_form_success_nomination_suffix": { + "name": "home_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "home_video_modal_video_id": { + "name": "home_video_modal_video_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_video_modal_title": { + "name": "home_video_modal_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Video-Player Platzhalter'" + }, + "home_video_modal_description": { + "name": "home_video_modal_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hier würde das Image-Video des BMP geladen werden.'" + }, + "home_video_modal_close_label": { + "name": "home_video_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "contact_hero_background_image_id": { + "name": "contact_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "contact_hero_image_alt": { + "name": "contact_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "contact_hero_eyebrow": { + "name": "contact_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dialog & Service'" + }, + "contact_hero_heading": { + "name": "contact_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir sind\nfür Sie da.'" + }, + "contact_hero_description": { + "name": "contact_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen zur Bewerbung, zur Gala oder zu Partnermöglichkeiten – unser Team begleitet Sie persönlich.'" + }, + "contact_info_eyebrow": { + "name": "contact_info_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktkontakt'" + }, + "contact_info_heading": { + "name": "contact_info_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt­möglichkeiten'" + }, + "contact_info_next_award_label": { + "name": "contact_info_next_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächste Preisverleihung:'" + }, + "contact_info_next_award_date": { + "name": "contact_info_next_award_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'22. Oktober 2026'" + }, + "contact_info_form_image_id": { + "name": "contact_info_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "contact_info_form_image_alt": { + "name": "contact_info_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala 2025'" + }, + "contact_info_form_image_label": { + "name": "contact_info_form_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala 2025 München'" + }, + "contact_info_form_eyebrow": { + "name": "contact_info_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontaktformular'" + }, + "contact_info_form_title": { + "name": "contact_info_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie uns'" + }, + "contact_info_form_copy_prompts_subject": { + "name": "contact_info_form_copy_prompts_subject", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Womit können wir Ihnen helfen?'" + }, + "contact_info_form_copy_prompts_contact": { + "name": "contact_info_form_copy_prompts_contact", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie dürfen wir Sie kontaktieren?'" + }, + "contact_info_form_copy_prompts_message": { + "name": "contact_info_form_copy_prompts_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was möchten Sie uns mitteilen?'" + }, + "contact_info_form_copy_fields_name_label": { + "name": "contact_info_form_copy_fields_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Name'" + }, + "contact_info_form_copy_fields_name_placeholder": { + "name": "contact_info_form_copy_fields_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "contact_info_form_copy_fields_email_label": { + "name": "contact_info_form_copy_fields_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "contact_info_form_copy_fields_email_placeholder": { + "name": "contact_info_form_copy_fields_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "contact_info_form_copy_fields_message_label": { + "name": "contact_info_form_copy_fields_message_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht'" + }, + "contact_info_form_copy_fields_message_placeholder": { + "name": "contact_info_form_copy_fields_message_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie Ihre Nachricht…'" + }, + "contact_info_form_copy_validation_name_required": { + "name": "contact_info_form_copy_validation_name_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Namen angeben'" + }, + "contact_info_form_copy_validation_email_required": { + "name": "contact_info_form_copy_validation_email_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte E-Mail angeben'" + }, + "contact_info_form_copy_validation_email_invalid": { + "name": "contact_info_form_copy_validation_email_invalid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "contact_info_form_copy_validation_message_required": { + "name": "contact_info_form_copy_validation_message_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Nachricht verfassen.'" + }, + "contact_info_form_copy_navigation_back": { + "name": "contact_info_form_copy_navigation_back", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "contact_info_form_copy_navigation_next": { + "name": "contact_info_form_copy_navigation_next", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "contact_info_form_copy_navigation_submit": { + "name": "contact_info_form_copy_navigation_submit", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage senden'" + }, + "contact_info_form_copy_success_heading": { + "name": "contact_info_form_copy_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht gesendet'" + }, + "contact_info_form_copy_success_prefix": { + "name": "contact_info_form_copy_success_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Danke,'" + }, + "contact_info_form_copy_success_suffix_before_email": { + "name": "contact_info_form_copy_success_suffix_before_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns zeitnah bei'" + }, + "contact_deadlines_watermark": { + "name": "contact_deadlines_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'2026'" + }, + "contact_deadlines_eyebrow": { + "name": "contact_deadlines_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fahrplan 2026'" + }, + "contact_faq_eyebrow": { + "name": "contact_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Antworten'" + }, + "contact_faq_heading": { + "name": "contact_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige\nFragen'" + }, + "participation_hero_background_image_id": { + "name": "participation_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "participation_hero_image_alt": { + "name": "participation_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Teilnahme BMP'" + }, + "participation_hero_eyebrow": { + "name": "participation_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026'" + }, + "participation_hero_heading": { + "name": "participation_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'GESTALTEN SIE\nBAYERNS ZUKUNFT.'" + }, + "participation_hero_description": { + "name": "participation_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alles, was Sie für Ihre erfolgreiche Bewerbung zum Bayerischen Mittelstandspreis wissen müssen.'" + }, + "participation_process_eyebrow": { + "name": "participation_process_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt für Schritt'" + }, + "participation_process_heading": { + "name": "participation_process_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR WEG ZUM\nPREIS.'" + }, + "participation_process_description": { + "name": "participation_process_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Einreichung bis zur Gala – vier klar definierte Schritte auf dem Weg zur höchsten Auszeichnung des bayerischen Mittelstands.'" + }, + "participation_process_step_prefix": { + "name": "participation_process_step_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt'" + }, + "participation_process_scroll_hint": { + "name": "participation_process_scroll_hint", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Scrollen zum Erkunden'" + }, + "participation_process_progress_label": { + "name": "participation_process_progress_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'01 / 04'" + }, + "participation_eligibility_eyebrow": { + "name": "participation_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berechtigung'" + }, + "participation_eligibility_heading": { + "name": "participation_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER KANN\nTEILNEHMEN?'" + }, + "participation_eligibility_description": { + "name": "participation_eligibility_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vier klar definierte Kriterien: Erfüllen Sie alle, bewerben Sie sich kostenlos und ohne bürokratischen Aufwand.'" + }, + "participation_eligibility_primary_cta_label": { + "name": "participation_eligibility_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "participation_eligibility_primary_cta_url": { + "name": "participation_eligibility_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_eligibility_secondary_cta_label": { + "name": "participation_eligibility_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "participation_eligibility_secondary_cta_url": { + "name": "participation_eligibility_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "participation_eligibility_nudge_text": { + "name": "participation_eligibility_nudge_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle 4 Punkte erfüllt? Dann jetzt kostenlos bewerben.'" + }, + "participation_eligibility_nudge_cta_label": { + "name": "participation_eligibility_nudge_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "participation_eligibility_nudge_cta_url": { + "name": "participation_eligibility_nudge_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_application_ways_eyebrow": { + "name": "participation_application_ways_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "participation_application_ways_heading": { + "name": "participation_application_ways_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'HIER KÖNNEN SIE SICH\nBEWERBEN ODER EIN\nUNTERNEHMEN VORSCHLAGEN.'" + }, + "participation_application_ways_description": { + "name": "participation_application_ways_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Als Unternehmen haben Sie zwei Möglichkeiten: Sie werden von einem unterstützenden Partner oder einer Institution vorgeschlagen, oder Sie ergreifen selbst die Initiative und füllen unsere Anmeldung aus. Die Teilnahme ist in allen Fällen kostenfrei.'" + }, + "participation_application_ways_recommended_label": { + "name": "participation_application_ways_recommended_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Empfohlen'" + }, + "participation_application_ways_fallback_cta_label": { + "name": "participation_application_ways_fallback_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "participation_application_ways_fallback_cta_url": { + "name": "participation_application_ways_fallback_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_dates_banner_heading": { + "name": "participation_dates_banner_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wichtige Termine 2026'" + }, + "participation_dates_banner_description": { + "name": "participation_dates_banner_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Planen Sie Ihre Teilnahme rechtzeitig.'" + }, + "participation_awards_grid_eyebrow": { + "name": "participation_awards_grid_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnungen 2026'" + }, + "participation_awards_grid_heading": { + "name": "participation_awards_grid_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.'" + }, + "participation_awards_grid_description": { + "name": "participation_awards_grid_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.'" + }, + "participation_application_form_image_id": { + "name": "participation_application_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "participation_application_form_image_alt": { + "name": "participation_application_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "participation_application_form_image_caption": { + "name": "participation_application_form_image_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "participation_application_form_eyebrow": { + "name": "participation_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung'" + }, + "participation_application_form_heading": { + "name": "participation_application_form_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEWERBEN ODER\nVORSCHLAGEN.'" + }, + "participation_application_form_description": { + "name": "participation_application_form_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie können sich selbst bewerben oder ein herausragendes Unternehmen vorschlagen. Firmenverbunde können sich ebenfalls bewerben. Die Teilnahme ist vollständig kostenfrei.'" + }, + "participation_application_form_form_eyebrow": { + "name": "participation_application_form_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "participation_application_form_upload_cta_label": { + "name": "participation_application_form_upload_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF hochladen'" + }, + "participation_application_form_upload_cta_url": { + "name": "participation_application_form_upload_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "participation_application_form_upload_prompt": { + "name": "participation_application_form_upload_prompt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie haben Ihre Unterlagen bereits als PDF vorbereitet? Laden Sie sie direkt hoch, statt das Formular auszufüllen.'" + }, + "participation_application_form_upload_footer_cta_label": { + "name": "participation_application_form_upload_footer_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen →'" + }, + "participation_application_form_upload_footer_cta_url": { + "name": "participation_application_form_upload_footer_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "participation_form_step_complete_label": { + "name": "participation_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "participation_form_back_label": { + "name": "participation_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "participation_form_next_label": { + "name": "participation_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "participation_form_submit_label": { + "name": "participation_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "participation_form_yes_label": { + "name": "participation_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "participation_form_no_label": { + "name": "participation_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "participation_form_required_suffix": { + "name": "participation_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "participation_form_validation_choose": { + "name": "participation_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "participation_form_validation_required": { + "name": "participation_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "participation_form_validation_invalid_email": { + "name": "participation_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "participation_form_type_step_eyebrow": { + "name": "participation_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "participation_form_type_step_heading": { + "name": "participation_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "participation_form_type_step_self_title": { + "name": "participation_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "participation_form_type_step_self_desc": { + "name": "participation_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "participation_form_type_step_nomination_title": { + "name": "participation_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "participation_form_type_step_nomination_desc": { + "name": "participation_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "participation_form_eligibility_allowed_employee_values": { + "name": "participation_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "participation_form_eligibility_required_bayern_value": { + "name": "participation_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "participation_form_eligibility_eyebrow": { + "name": "participation_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "participation_form_eligibility_heading": { + "name": "participation_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "participation_form_eligibility_employees_label": { + "name": "participation_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "participation_form_eligibility_bayern_label": { + "name": "participation_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "participation_form_eligibility_owner_label": { + "name": "participation_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "participation_form_eligibility_ineligible_heading": { + "name": "participation_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "participation_form_eligibility_ineligible_body": { + "name": "participation_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "participation_form_eligibility_ineligible_contact_prefix": { + "name": "participation_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "participation_form_eligibility_ineligible_contact_email": { + "name": "participation_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "participation_form_self_contact_eyebrow": { + "name": "participation_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "participation_form_self_contact_heading": { + "name": "participation_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "participation_form_self_contact_company_label": { + "name": "participation_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "participation_form_self_contact_company_placeholder": { + "name": "participation_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "participation_form_self_contact_name_label": { + "name": "participation_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "participation_form_self_contact_name_placeholder": { + "name": "participation_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "participation_form_self_contact_email_label": { + "name": "participation_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "participation_form_self_contact_email_placeholder": { + "name": "participation_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "participation_form_self_contact_phone_label": { + "name": "participation_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "participation_form_self_contact_phone_placeholder": { + "name": "participation_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "participation_form_self_contact_footnote": { + "name": "participation_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "participation_form_self_summary_eyebrow": { + "name": "participation_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "participation_form_self_summary_heading": { + "name": "participation_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "participation_form_self_summary_company_label": { + "name": "participation_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "participation_form_self_summary_employees_label": { + "name": "participation_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "participation_form_self_summary_location_label": { + "name": "participation_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "participation_form_self_summary_location_prefix": { + "name": "participation_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "participation_form_self_summary_contact_label": { + "name": "participation_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "participation_form_nomination_company_eyebrow": { + "name": "participation_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "participation_form_nomination_company_heading": { + "name": "participation_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "participation_form_nomination_company_company_label": { + "name": "participation_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "participation_form_nomination_company_company_placeholder": { + "name": "participation_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "participation_form_nomination_company_industry_label": { + "name": "participation_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "participation_form_nomination_company_industry_placeholder": { + "name": "participation_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "participation_form_nomination_company_location_label": { + "name": "participation_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "participation_form_nomination_company_location_placeholder": { + "name": "participation_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "participation_form_nomination_contact_eyebrow": { + "name": "participation_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "participation_form_nomination_contact_heading": { + "name": "participation_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "participation_form_nomination_contact_name_label": { + "name": "participation_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "participation_form_nomination_contact_name_placeholder": { + "name": "participation_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "participation_form_nomination_contact_email_label": { + "name": "participation_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "participation_form_nomination_contact_email_placeholder": { + "name": "participation_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "participation_form_nomination_contact_relationship_label": { + "name": "participation_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "participation_form_nomination_contact_relationship_placeholder": { + "name": "participation_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "participation_form_nomination_contact_footnote": { + "name": "participation_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "participation_form_nomination_summary_eyebrow": { + "name": "participation_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "participation_form_nomination_summary_heading": { + "name": "participation_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "participation_form_nomination_summary_company_label": { + "name": "participation_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "participation_form_nomination_summary_industry_label": { + "name": "participation_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "participation_form_nomination_summary_location_label": { + "name": "participation_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "participation_form_nomination_summary_nominated_by_label": { + "name": "participation_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "participation_form_nomination_summary_empty_value": { + "name": "participation_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "participation_form_success_self_heading": { + "name": "participation_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "participation_form_success_nomination_heading": { + "name": "participation_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "participation_form_success_self_prefix": { + "name": "participation_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "participation_form_success_self_middle": { + "name": "participation_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "participation_form_success_self_suffix": { + "name": "participation_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "participation_form_success_nomination_prefix": { + "name": "participation_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "participation_form_success_nomination_middle": { + "name": "participation_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "participation_form_success_nomination_suffix": { + "name": "participation_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "about_hero_background_image_id": { + "name": "about_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_hero_image_alt": { + "name": "about_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "about_hero_eyebrow": { + "name": "about_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "about_hero_heading": { + "name": "about_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WERTE, DIE\nBAYERN BEWEGEN'" + }, + "about_hero_highlight": { + "name": "about_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERN BEWEGEN'" + }, + "about_hero_description": { + "name": "about_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Seit 2005 ehrt der BMP herausragende Leistungen im bayerischen Mittelstand. Entdecken Sie die Geschichte, die Vision und die Menschen dahinter.'" + }, + "about_hero_primary_cta_label": { + "name": "about_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "about_hero_primary_cta_url": { + "name": "about_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "about_hero_secondary_cta_label": { + "name": "about_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "about_hero_secondary_cta_url": { + "name": "about_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "about_prize_image_id": { + "name": "about_prize_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_prize_image_alt": { + "name": "about_prize_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Preisverleihung'" + }, + "about_prize_eyebrow": { + "name": "about_prize_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was ist der Preis?'" + }, + "about_prize_heading": { + "name": "about_prize_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DER BAYERISCHE\nMITTELSTANDSPREIS'" + }, + "about_prize_image_label": { + "name": "about_prize_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Preisverleihung · München'" + }, + "about_mittelstand_image_id": { + "name": "about_mittelstand_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_mittelstand_image_alt": { + "name": "about_mittelstand_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstand'" + }, + "about_mittelstand_eyebrow": { + "name": "about_mittelstand_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Relevanz & Zielsetzung'" + }, + "about_mittelstand_heading": { + "name": "about_mittelstand_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEDEUTUNG FÜR\nDEN MITTELSTAND'" + }, + "about_highlights_fallback_image_id": { + "name": "about_highlights_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_highlights_eyebrow": { + "name": "about_highlights_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger-Highlights'" + }, + "about_highlights_heading": { + "name": "about_highlights_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSGEZEICHNETE 2025'" + }, + "about_highlights_cta_label": { + "name": "about_highlights_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "about_highlights_cta_url": { + "name": "about_highlights_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "about_highlights_hover_label": { + "name": "about_highlights_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "about_highlights_fallback_winner_name": { + "name": "about_highlights_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_highlights_fallback_winner_category": { + "name": "about_highlights_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_highlights_fallback_winner_award_type": { + "name": "about_highlights_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "about_highlights_year": { + "name": "about_highlights_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 2025 + }, + "about_testimonials_eyebrow": { + "name": "about_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "about_testimonials_heading": { + "name": "about_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "about_testimonials_desktop_heading": { + "name": "about_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "about_testimonials_year_prefix": { + "name": "about_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_testimonials_previous_label": { + "name": "about_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "about_testimonials_next_label": { + "name": "about_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "about_testimonials_slide_label_prefix": { + "name": "about_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "about_history_eyebrow": { + "name": "about_history_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geschichte & Meilensteine'" + }, + "about_history_heading": { + "name": "about_history_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20 JAHRE\nMITTELSTANDSEXZELLENZ'" + }, + "about_history_highlight": { + "name": "about_history_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTANDS'" + }, + "about_history_watermark": { + "name": "about_history_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20'" + }, + "about_goals_eyebrow": { + "name": "about_goals_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zielsetzung'" + }, + "about_goals_heading": { + "name": "about_goals_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WOFÜR WIR\nSTEHEN'" + }, + "about_values_eyebrow": { + "name": "about_values_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorteile & Werte'" + }, + "about_values_heading": { + "name": "about_values_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM DER\nBMP ZÄHLT'" + }, + "about_values_description": { + "name": "about_values_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Drei Dimensionen, die den Unterschied machen: für Ihr Unternehmen, Ihre Mitarbeitenden und Ihren Marktauftritt.'" + }, + "about_cta_eyebrow": { + "name": "about_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Starten Sie Ihre Reise'" + }, + "about_cta_heading": { + "name": "about_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN AUCH SIE GESCHICHTE'" + }, + "about_cta_description": { + "name": "about_cta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands. Die Teilnahmegebühr beträgt 0 EUR und die Teilnahme lohnt sich in jeder Phase.'" + }, + "about_cta_primary_cta_label": { + "name": "about_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "about_cta_primary_cta_url": { + "name": "about_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "about_cta_secondary_prefix": { + "name": "about_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "about_cta_secondary_cta_label": { + "name": "about_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "about_cta_secondary_cta_url": { + "name": "about_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "impressum_hero_back_label": { + "name": "impressum_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "impressum_hero_eyebrow": { + "name": "impressum_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "impressum_hero_heading": { + "name": "impressum_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Impressum'" + }, + "impressum_hero_description_html": { + "name": "impressum_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Angaben gemäß §5 TMG · Zur Datenschutzerklärung →'" + }, + "impressum_navigation_toc_title": { + "name": "impressum_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "impressum_navigation_side_link_label": { + "name": "impressum_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutzerklärung →'" + }, + "impressum_navigation_side_link_url": { + "name": "impressum_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/datenschutz'" + }, + "datenschutz_hero_back_label": { + "name": "datenschutz_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "datenschutz_hero_eyebrow": { + "name": "datenschutz_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "datenschutz_hero_heading": { + "name": "datenschutz_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutz­erklärung'" + }, + "datenschutz_hero_description_html": { + "name": "datenschutz_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zuletzt aktualisiert: April 2026 · Zum Impressum →'" + }, + "datenschutz_navigation_toc_title": { + "name": "datenschutz_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "datenschutz_navigation_side_link_label": { + "name": "datenschutz_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Impressum →'" + }, + "datenschutz_navigation_side_link_url": { + "name": "datenschutz_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/impressum'" + }, + "preistraeger_index_hero_image_id": { + "name": "preistraeger_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_index_hero_image_url": { + "name": "preistraeger_index_hero_image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=2000'" + }, + "preistraeger_index_hero_image_alt": { + "name": "preistraeger_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung'" + }, + "preistraeger_index_breadcrumb_label": { + "name": "preistraeger_index_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "preistraeger_index_count_label": { + "name": "preistraeger_index_count_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "preistraeger_index_empty_message": { + "name": "preistraeger_index_empty_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Preisträger für diese Auswahl.'" + }, + "preistraeger_index_card_fallback_image_id": { + "name": "preistraeger_index_card_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_index_card_hover_label": { + "name": "preistraeger_index_card_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr erfahren'" + }, + "preistraeger_index_card_fallback_winner_name": { + "name": "preistraeger_index_card_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "preistraeger_index_card_fallback_winner_category": { + "name": "preistraeger_index_card_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "preistraeger_index_card_fallback_winner_award_type": { + "name": "preistraeger_index_card_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "preistraeger_index_card_fallback_winner_location": { + "name": "preistraeger_index_card_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "preistraeger_index_card_fallback_winner_industry": { + "name": "preistraeger_index_card_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "preistraeger_index_cta_text": { + "name": "preistraeger_index_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie der nächste Preisträger.'" + }, + "preistraeger_index_cta_primary_cta_label": { + "name": "preistraeger_index_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "preistraeger_index_cta_primary_cta_url": { + "name": "preistraeger_index_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "preistraeger_index_cta_secondary_prefix": { + "name": "preistraeger_index_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Arbeit unterstützen:'" + }, + "preistraeger_index_cta_secondary_cta_label": { + "name": "preistraeger_index_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "preistraeger_index_cta_secondary_cta_url": { + "name": "preistraeger_index_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "press_index_hero_image_id": { + "name": "press_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_hero_image_alt": { + "name": "press_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse BMP'" + }, + "press_index_hero_eyebrow": { + "name": "press_index_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse & Newsroom'" + }, + "press_index_hero_heading": { + "name": "press_index_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS &\nBERICHTERSTATTUNG.'" + }, + "press_index_hero_description": { + "name": "press_index_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Termine, Pressemitteilungen und Medienmaterial rund um den Bayerischen Mittelstandspreis.'" + }, + "press_index_events_eyebrow": { + "name": "press_index_events_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termine 2026'" + }, + "press_index_events_heading": { + "name": "press_index_events_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS RUND UM DEN PREIS.'" + }, + "press_index_events_description": { + "name": "press_index_events_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Jurysitzung bis zur festlichen Gala – alle Veranstaltungen auf einen Blick.'" + }, + "press_index_events_detail_label": { + "name": "press_index_events_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "press_index_events_default_status_label": { + "name": "press_index_events_default_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geplant'" + }, + "press_index_events_open_status_label": { + "name": "press_index_events_open_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anmeldung offen'" + }, + "press_index_events_missing_title_label": { + "name": "press_index_events_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "press_index_events_missing_date_label": { + "name": "press_index_events_missing_date_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "press_index_events_missing_location_label": { + "name": "press_index_events_missing_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "press_index_events_missing_category_label": { + "name": "press_index_events_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "press_index_events_collection_fallback_image_id": { + "name": "press_index_events_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_news_eyebrow": { + "name": "press_index_news_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "press_index_news_heading": { + "name": "press_index_news_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'NACHRICHTEN & EINBLICKE.'" + }, + "press_index_news_description": { + "name": "press_index_news_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berichte, Hintergründe und Einblicke rund um den bayerischen Mittelstand und den BMP.'" + }, + "press_index_news_read_more_label": { + "name": "press_index_news_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "press_index_news_missing_title_label": { + "name": "press_index_news_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "press_index_news_missing_category_label": { + "name": "press_index_news_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "press_index_news_collection_fallback_image_id": { + "name": "press_index_news_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_downloads_eyebrow": { + "name": "press_index_downloads_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt & Material'" + }, + "press_index_downloads_heading": { + "name": "press_index_downloads_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PRESSE-MATERIAL & KONTAKT.'" + }, + "press_index_downloads_description": { + "name": "press_index_downloads_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie unser offizielles Material herunter oder kontaktieren Sie direkt unser Presseteam für individuelle Anfragen.'" + }, + "press_index_downloads_kit_label": { + "name": "press_index_downloads_kit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Download Presse-Kit'" + }, + "press_index_downloads_kit_meta": { + "name": "press_index_downloads_kit_meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip – 1,5 MB'" + }, + "press_index_downloads_kit_file_id": { + "name": "press_index_downloads_kit_file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_downloads_kit_url": { + "name": "press_index_downloads_kit_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/Print_BMP.zip'" + }, + "press_index_downloads_kit_download_name": { + "name": "press_index_downloads_kit_download_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip'" + }, + "press_index_downloads_contact_eyebrow": { + "name": "press_index_downloads_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt'" + }, + "press_index_downloads_contact_name": { + "name": "press_index_downloads_contact_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Tanja Meier'" + }, + "press_index_downloads_contact_lines": { + "name": "press_index_downloads_contact_lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'presse@bmp-bayern.de\n+49 89 123 456 99'" + }, + "press_index_accreditation_eyebrow": { + "name": "press_index_accreditation_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung'" + }, + "press_index_accreditation_heading": { + "name": "press_index_accreditation_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AKKREDITIERUNG ANFRAGEN.'" + }, + "press_index_accreditation_description": { + "name": "press_index_accreditation_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Melden Sie sich für unsere Presse-Verteiler an oder fordern Sie eine Akkreditierung für die Gala-Verleihung an.'" + }, + "press_index_accreditation_medium_label": { + "name": "press_index_accreditation_medium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Medium / Redaktion *'" + }, + "press_index_accreditation_name_label": { + "name": "press_index_accreditation_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name *'" + }, + "press_index_accreditation_email_label": { + "name": "press_index_accreditation_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail-Adresse *'" + }, + "press_index_accreditation_submit_label": { + "name": "press_index_accreditation_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung anfragen'" + }, + "press_index_accreditation_success_heading": { + "name": "press_index_accreditation_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "press_index_accreditation_success_message": { + "name": "press_index_accreditation_success_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank für Ihre Akkreditierungsanfrage. Unser Presseteam meldet sich zeitnah bei Ihnen.'" + }, + "form_upload_hero_eyebrow": { + "name": "form_upload_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026 – Bewerbungsportal'" + }, + "form_upload_hero_heading": { + "name": "form_upload_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERLAGEN\nEINREICHEN'" + }, + "form_upload_hero_description": { + "name": "form_upload_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie Ihre Bewerbungsunterlagen sicher hoch. Alle Einreichungen werden vertraulich behandelt und direkt an die Jury weitergeleitet.'" + }, + "form_upload_breadcrumb_label": { + "name": "form_upload_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen'" + }, + "form_upload_requirements_eyebrow": { + "name": "form_upload_requirements_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was wird benötigt?'" + }, + "form_upload_requirements_heading": { + "name": "form_upload_requirements_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ANFORDERUNGEN & FRISTEN'" + }, + "form_upload_upload_eyebrow": { + "name": "form_upload_upload_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung'" + }, + "form_upload_upload_heading": { + "name": "form_upload_upload_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DATEIEN HOCHLADEN'" + }, + "form_upload_upload_drop_title": { + "name": "form_upload_upload_drop_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dateien hierher ziehen'" + }, + "form_upload_upload_drop_description": { + "name": "form_upload_upload_drop_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oder klicken zum Auswählen'" + }, + "form_upload_upload_accepted_formats": { + "name": "form_upload_upload_accepted_formats", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF\nDOCX\nXLSX\nPPT'" + }, + "form_upload_upload_file_remove_label": { + "name": "form_upload_upload_file_remove_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei entfernen'" + }, + "form_upload_upload_note_title": { + "name": "form_upload_upload_note_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis'" + }, + "form_upload_upload_note": { + "name": "form_upload_upload_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stellen Sie sicher, dass alle Pflichtdokumente vollständig sind, bevor Sie einreichen. Unvollständige Bewerbungen können nicht berücksichtigt werden.'" + }, + "form_upload_upload_selected_submit_prefix": { + "name": "form_upload_upload_selected_submit_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei'" + }, + "form_upload_upload_selected_submit_plural_suffix": { + "name": "form_upload_upload_selected_submit_plural_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'en'" + }, + "form_upload_upload_selected_submit_action": { + "name": "form_upload_upload_selected_submit_action", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'einreichen'" + }, + "form_upload_upload_empty_submit_label": { + "name": "form_upload_upload_empty_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Dateien ausgewählt'" + }, + "form_upload_upload_privacy_note": { + "name": "form_upload_upload_privacy_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mit der Einreichung stimmen Sie der Verarbeitung Ihrer Daten gemäß unserer Datenschutzerklärung zu.'" + }, + "form_upload_success_heading": { + "name": "form_upload_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung erfolgreich'" + }, + "form_upload_success_description": { + "name": "form_upload_success_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Unterlagen wurden übermittelt. Sie erhalten eine Bestätigung per E-Mail. Die Jury meldet sich bis August 2026.'" + }, + "form_upload_success_link_label": { + "name": "form_upload_success_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "form_upload_success_link_url": { + "name": "form_upload_success_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "form_upload_cta_eyebrow": { + "name": "form_upload_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Noch Fragen zur Einreichung?'" + }, + "form_upload_cta_contact_label": { + "name": "form_upload_cta_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "form_upload_cta_contact_url": { + "name": "form_upload_cta_contact_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "form_upload_cta_button_label": { + "name": "form_upload_cta_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "form_upload_cta_button_url": { + "name": "form_upload_cta_button_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "netzwerk_hero_image_id": { + "name": "netzwerk_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "netzwerk_hero_image_alt": { + "name": "netzwerk_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Netzwerk Preisverleihung'" + }, + "netzwerk_hero_eyebrow": { + "name": "netzwerk_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury & Partner'" + }, + "netzwerk_hero_heading": { + "name": "netzwerk_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS NETZWERK\nHINTER DEM AWARD.'" + }, + "netzwerk_hero_highlight": { + "name": "netzwerk_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AWARD.'" + }, + "netzwerk_hero_description": { + "name": "netzwerk_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis wird getragen von einem starken Netzwerk aus Schirmherrschaft, unabhängiger Fach-Jury und langjährigen Partnern aus Wirtschaft und Gesellschaft.'" + }, + "netzwerk_patronage_eyebrow": { + "name": "netzwerk_patronage_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Schirmherrschaft'" + }, + "netzwerk_patronage_heading": { + "name": "netzwerk_patronage_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin und Schirmherr'" + }, + "netzwerk_patronage_description": { + "name": "netzwerk_patronage_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'des Bayerischen Mittelstandspreises'" + }, + "netzwerk_patronage_greeting_eyebrow": { + "name": "netzwerk_patronage_greeting_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grußwort'" + }, + "netzwerk_patronage_greeting_role": { + "name": "netzwerk_patronage_greeting_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin'" + }, + "netzwerk_patronage_greeting_name": { + "name": "netzwerk_patronage_greeting_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ilse Aigner MdL'" + }, + "netzwerk_patronage_greeting_title_line1": { + "name": "netzwerk_patronage_greeting_title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Präsidentin des Bayerischen Landtags'" + }, + "netzwerk_patronage_greeting_title_line2": { + "name": "netzwerk_patronage_greeting_title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerische Staatsministerin für Wirtschaft a.D.'" + }, + "netzwerk_patronage_greeting_quote": { + "name": "netzwerk_patronage_greeting_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Der Bayerische Mittelstandspreis steht für das, was Bayern stark macht: Unternehmergeist, Verantwortung und Qualität. Mit großer Freude übernehme ich erneut die Schirmherrschaft für diesen bedeutenden Preis.“'" + }, + "netzwerk_patronage_greeting_attribution": { + "name": "netzwerk_patronage_greeting_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'– Ilse Aigner MdL, Präsidentin des Bayerischen Landtags'" + }, + "netzwerk_jury_intro_eyebrow": { + "name": "netzwerk_jury_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wer entscheidet?'" + }, + "netzwerk_jury_intro_heading": { + "name": "netzwerk_jury_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNABHÄNGIGE EXPERTISE FÜR DEN MITTELSTAND.'" + }, + "netzwerk_jury_intro_description": { + "name": "netzwerk_jury_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises besteht ausschließlich aus ehrenamtlich tätigen Expertinnen und Experten. Kein Mitglied steht in wirtschaftlicher Verbindung zu einem Bewerber – Transparenz und Unparteilichkeit sind die Grundpfeiler unseres Verfahrens.'" + }, + "netzwerk_jury_eyebrow": { + "name": "netzwerk_jury_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Gremium'" + }, + "netzwerk_jury_heading": { + "name": "netzwerk_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNSERE JURY 2026'" + }, + "netzwerk_jury_description": { + "name": "netzwerk_jury_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unabhängige Expertinnen und Experten aus Wirtschaft, Wissenschaft und Verbänden, für einen vollständig unabhängigen Bewertungsprozess.'" + }, + "netzwerk_jury_chair_badge": { + "name": "netzwerk_jury_chair_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury-Vorsitz'" + }, + "netzwerk_jury_note": { + "name": "netzwerk_jury_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis: Einzelne Persönlichkeiten engagieren sich sowohl in der Jury als auch als Partner des BMP – beide Rollen werden auf dieser Seite getrennt ausgewiesen.'" + }, + "netzwerk_expertise_eyebrow": { + "name": "netzwerk_expertise_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hintergrund & Expertise'" + }, + "netzwerk_expertise_heading": { + "name": "netzwerk_expertise_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIE BEWERTET DIE JURY?'" + }, + "netzwerk_expertise_quote": { + "name": "netzwerk_expertise_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des BMP ist vollständig von wirtschaftlichen Interessen unabhängig. Jede Entscheidung wird transparent nachvollzogen – das ist unser Versprechen an die Unternehmen Bayerns.'" + }, + "netzwerk_expertise_quote_attribution": { + "name": "netzwerk_expertise_quote_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Prof. Dr. Klaus Bergmann, Juryvorsitzender'" + }, + "netzwerk_partners_eyebrow": { + "name": "netzwerk_partners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netzwerkqualität'" + }, + "netzwerk_partners_heading": { + "name": "netzwerk_partners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PARTNER & SPONSOREN'" + }, + "netzwerk_partners_description": { + "name": "netzwerk_partners_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Partner in drei Kategorien: Hauptsponsoren, Medienpartner und weitere Sponsoren. Klicken für Details.'" + }, + "netzwerk_partners_detail_label": { + "name": "netzwerk_partners_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "netzwerk_partners_premium_label": { + "name": "netzwerk_partners_premium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Premium'" + }, + "netzwerk_partners_default_logo_color": { + "name": "netzwerk_partners_default_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#111D55'" + }, + "netzwerk_partners_modal_industry_label": { + "name": "netzwerk_partners_modal_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "netzwerk_partners_modal_location_label": { + "name": "netzwerk_partners_modal_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "netzwerk_partners_modal_web_label": { + "name": "netzwerk_partners_modal_web_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Web'" + }, + "netzwerk_partners_modal_about_label": { + "name": "netzwerk_partners_modal_about_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "netzwerk_partners_modal_website_label": { + "name": "netzwerk_partners_modal_website_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen'" + }, + "netzwerk_partners_modal_close_label": { + "name": "netzwerk_partners_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "netzwerk_partners_modal_footer_title": { + "name": "netzwerk_partners_modal_footer_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis 2026'" + }, + "netzwerk_partners_modal_footer_role_prefix": { + "name": "netzwerk_partners_modal_footer_role_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Offizieller'" + }, + "netzwerk_sponsoring_eyebrow": { + "name": "netzwerk_sponsoring_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wachstum durch Partnerschaft'" + }, + "netzwerk_sponsoring_heading": { + "name": "netzwerk_sponsoring_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIR FREUEN UNS ÜBER NEUE SPONSOREN.'" + }, + "netzwerk_sponsoring_description": { + "name": "netzwerk_sponsoring_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Positionieren Sie Ihre Marke im exklusivsten Netzwerk des bayerischen Mittelstands – mit maßgeschneiderten Sponsoring-Paketen.'" + }, + "netzwerk_sponsoring_image_id": { + "name": "netzwerk_sponsoring_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "netzwerk_sponsoring_image_alt": { + "name": "netzwerk_sponsoring_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "netzwerk_sponsoring_image_label": { + "name": "netzwerk_sponsoring_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "netzwerk_sponsoring_form_eyebrow": { + "name": "netzwerk_sponsoring_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sponsoring 2026'" + }, + "netzwerk_sponsoring_footnote_prefix": { + "name": "netzwerk_sponsoring_footnote_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "netzwerk_sponsoring_footnote_label": { + "name": "netzwerk_sponsoring_footnote_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "netzwerk_sponsoring_footnote_url": { + "name": "netzwerk_sponsoring_footnote_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "netzwerk_sponsoring_form_step1_eyebrow": { + "name": "netzwerk_sponsoring_form_step1_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1 – Paket wählen'" + }, + "netzwerk_sponsoring_form_step1_heading": { + "name": "netzwerk_sponsoring_form_step1_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Interesse an'" + }, + "netzwerk_sponsoring_form_step2_eyebrow": { + "name": "netzwerk_sponsoring_form_step2_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 2 – Unternehmen'" + }, + "netzwerk_sponsoring_form_step2_heading": { + "name": "netzwerk_sponsoring_form_step2_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Unternehmen'" + }, + "netzwerk_sponsoring_form_company_label": { + "name": "netzwerk_sponsoring_form_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen *'" + }, + "netzwerk_sponsoring_form_company_placeholder": { + "name": "netzwerk_sponsoring_form_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "netzwerk_sponsoring_form_industry_label": { + "name": "netzwerk_sponsoring_form_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "netzwerk_sponsoring_form_industry_placeholder": { + "name": "netzwerk_sponsoring_form_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Finanzdienstleistungen'" + }, + "netzwerk_sponsoring_form_step3_eyebrow": { + "name": "netzwerk_sponsoring_form_step3_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 3 – Kontakt'" + }, + "netzwerk_sponsoring_form_step3_heading": { + "name": "netzwerk_sponsoring_form_step3_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner'" + }, + "netzwerk_sponsoring_form_contact_label": { + "name": "netzwerk_sponsoring_form_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner *'" + }, + "netzwerk_sponsoring_form_contact_placeholder": { + "name": "netzwerk_sponsoring_form_contact_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "netzwerk_sponsoring_form_email_label": { + "name": "netzwerk_sponsoring_form_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail *'" + }, + "netzwerk_sponsoring_form_email_placeholder": { + "name": "netzwerk_sponsoring_form_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "netzwerk_sponsoring_form_back_label": { + "name": "netzwerk_sponsoring_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "netzwerk_sponsoring_form_next_label": { + "name": "netzwerk_sponsoring_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "netzwerk_sponsoring_form_submit_label": { + "name": "netzwerk_sponsoring_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Exposé anfordern'" + }, + "netzwerk_sponsoring_form_required_package_error": { + "name": "netzwerk_sponsoring_form_required_package_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen Sie ein Paket.'" + }, + "netzwerk_sponsoring_form_required_field_error": { + "name": "netzwerk_sponsoring_form_required_field_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "netzwerk_sponsoring_form_invalid_email_error": { + "name": "netzwerk_sponsoring_form_invalid_email_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "netzwerk_sponsoring_form_done_label": { + "name": "netzwerk_sponsoring_form_done_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "netzwerk_sponsoring_form_success_heading": { + "name": "netzwerk_sponsoring_form_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "netzwerk_sponsoring_form_success_message_prefix": { + "name": "netzwerk_sponsoring_form_success_message_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank,'" + }, + "netzwerk_sponsoring_form_success_message_suffix": { + "name": "netzwerk_sponsoring_form_success_message_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen unser Sponsoring-Exposé innerhalb von 48 Stunden zu.'" + }, + "netzwerk_sponsoring_form_footer_text": { + "name": "netzwerk_sponsoring_form_footer_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns innerhalb von 48 Stunden.'" + }, + "mitglied_werden_header_brand_label": { + "name": "mitglied_werden_header_brand_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026'" + }, + "mitglied_werden_header_back_label": { + "name": "mitglied_werden_header_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "mitglied_werden_header_back_url": { + "name": "mitglied_werden_header_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/'" + }, + "mitglied_werden_hero_image_id": { + "name": "mitglied_werden_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mitglied_werden_hero_image_alt": { + "name": "mitglied_werden_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitgliedschaft'" + }, + "mitglied_werden_hero_eyebrow": { + "name": "mitglied_werden_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitgliedschaft'" + }, + "mitglied_werden_hero_heading": { + "name": "mitglied_werden_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DEIN WEG ZU UNS.'" + }, + "mitglied_werden_hero_description": { + "name": "mitglied_werden_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis lebt vom Engagement seiner Mitglieder.\nEine Mitgliedschaft ist Unterstützung, damit der Preis weiterhin unabhängig\nund kostenlos umgesetzt werden kann.'" + }, + "mitglied_werden_benefits_eyebrow": { + "name": "mitglied_werden_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Deine Vorteile'" + }, + "mitglied_werden_benefits_heading": { + "name": "mitglied_werden_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS DU GEWINNST.'" + }, + "mitglied_werden_about_eyebrow": { + "name": "mitglied_werden_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Verein'" + }, + "mitglied_werden_about_heading": { + "name": "mitglied_werden_about_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER WIR SIND.'" + }, + "mitglied_werden_about_descriptor": { + "name": "mitglied_werden_about_descriptor", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis e.V., eingetragener gemeinnütziger Verein'" + }, + "mitglied_werden_pricing_eyebrow": { + "name": "mitglied_werden_pricing_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitgliedsbeitrag'" + }, + "mitglied_werden_pricing_heading": { + "name": "mitglied_werden_pricing_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR BEITRAG.'" + }, + "mitglied_werden_pricing_employee_label": { + "name": "mitglied_werden_pricing_employee_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anzahl Mitarbeiter wählen'" + }, + "mitglied_werden_pricing_select_placeholder": { + "name": "mitglied_werden_pricing_select_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen…'" + }, + "mitglied_werden_pricing_option_suffix": { + "name": "mitglied_werden_pricing_option_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "mitglied_werden_pricing_result_eyebrow": { + "name": "mitglied_werden_pricing_result_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Beitragsübersicht'" + }, + "mitglied_werden_pricing_annual_net_label": { + "name": "mitglied_werden_pricing_annual_net_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (netto)'" + }, + "mitglied_werden_pricing_annual_gross_label": { + "name": "mitglied_werden_pricing_annual_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (19 % MwSt.)'" + }, + "mitglied_werden_pricing_annual_gross_short_label": { + "name": "mitglied_werden_pricing_annual_gross_short_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (brutto)'" + }, + "mitglied_werden_pricing_admission_gross_label": { + "name": "mitglied_werden_pricing_admission_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aufnahmegebühr (brutto)'" + }, + "mitglied_werden_pricing_total_year_one_label": { + "name": "mitglied_werden_pricing_total_year_one_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gesamt Jahr 1 (anteilig)'" + }, + "mitglied_werden_pricing_footnote": { + "name": "mitglied_werden_pricing_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'* Anteilig ab nächstem Monatsersten bis 31.12. des laufenden Jahres. Ab dem Folgejahr gilt der volle Jahresbeitrag.'" + }, + "mitglied_werden_pricing_cta_label": { + "name": "mitglied_werden_pricing_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden →'" + }, + "mitglied_werden_pricing_cta_href": { + "name": "mitglied_werden_pricing_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "mitglied_werden_pricing_table_toggle_label": { + "name": "mitglied_werden_pricing_table_toggle_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vollständige Beitragsstaffel'" + }, + "mitglied_werden_pricing_table_employee_header": { + "name": "mitglied_werden_pricing_table_employee_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "mitglied_werden_pricing_table_net_header": { + "name": "mitglied_werden_pricing_table_net_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netto / Jahr'" + }, + "mitglied_werden_pricing_table_gross_header": { + "name": "mitglied_werden_pricing_table_gross_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Brutto / Jahr'" + }, + "mitglied_werden_pricing_table_note_prefix": { + "name": "mitglied_werden_pricing_table_note_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zzgl. einmalige Aufnahmegebühr'" + }, + "mitglied_werden_pricing_table_note_suffix": { + "name": "mitglied_werden_pricing_table_note_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'(brutto) im ersten Jahr. Alle Angaben inkl. 19 % MwSt.'" + }, + "mitglied_werden_pricing_vat_rate": { + "name": "mitglied_werden_pricing_vat_rate", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0.19 + }, + "mitglied_werden_pricing_admission_fee_net": { + "name": "mitglied_werden_pricing_admission_fee_net", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 500 + }, + "mitglied_werden_form_intro_eyebrow": { + "name": "mitglied_werden_form_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt beitreten'" + }, + "mitglied_werden_form_intro_heading": { + "name": "mitglied_werden_form_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DU BIST DABEI.'" + }, + "mitglied_werden_form_intro_description": { + "name": "mitglied_werden_form_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fülle das Formular aus und wir melden uns innerhalb von 48 Stunden bei dir.\nDie Mitgliedschaft beginnt mit Bestätigung durch den Vorstand.'" + }, + "mitglied_werden_form_intro_image_id": { + "name": "mitglied_werden_form_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mitglied_werden_form_intro_image_alt": { + "name": "mitglied_werden_form_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder'" + }, + "mitglied_werden_form_intro_image_label": { + "name": "mitglied_werden_form_intro_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder 2025'" + }, + "mitglied_werden_wizard": { + "name": "mitglied_werden_wizard", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"requiredSuffix\":\"*\",\"optionalSuffix\":\"(optional)\",\"stepCounterTemplate\":\"Schritt {step} von {total}\",\"reviewFallback\":\"–\",\"nav\":{\"backLabel\":\"← Zurück\",\"nextLabel\":\"Weiter →\",\"submitLabel\":\"Mitgliedschaftsantrag verbindlich einreichen\"},\"steps\":[{\"id\":1,\"label\":\"Unternehmen\"},{\"id\":2,\"label\":\"Kontakt\"},{\"id\":3,\"label\":\"Details\"},{\"id\":4,\"label\":\"Zahlung\"},{\"id\":5,\"label\":\"Abschluss\"}],\"validation\":{\"required\":\"Pflichtfeld\",\"select\":\"Bitte wählen\",\"postalCode\":\"5-stellige PLZ erforderlich\",\"email\":\"Gültige E-Mail erforderlich\",\"iban\":\"Ungültige IBAN (DE, 22 Zeichen)\",\"sepa\":\"Bitte SEPA-Mandat bestätigen\"},\"tiers\":[{\"max\":10,\"label\":\"bis 10\",\"annual\":480},{\"max\":20,\"label\":\"bis 20\",\"annual\":600},{\"max\":50,\"label\":\"bis 50\",\"annual\":900},{\"max\":100,\"label\":\"bis 100\",\"annual\":1200},{\"max\":250,\"label\":\"bis 250\",\"annual\":2400},{\"max\":1000,\"label\":\"bis 1.000\",\"annual\":3600}],\"vatRate\":0.19,\"admissionFeeNet\":500,\"pricingSummary\":{\"eyebrow\":\"Beitragsübersicht\",\"annualNetLabel\":\"Jahresbeitrag (netto)\",\"annualGrossLabel\":\"Jahresbeitrag (brutto)\",\"admissionGrossLabel\":\"Aufnahmegebühr (brutto)\",\"totalYearOneLabel\":\"Gesamt Jahr 1 (anteilig)\"},\"fields\":{\"company\":{\"title\":\"Ihr Unternehmen\",\"subtitle\":\"Angaben zum antragstellenden Unternehmen\",\"legalForms\":[\"GmbH\",\"GmbH & Co. KG\",\"AG\",\"UG\",\"KG\",\"OHG\",\"GbR\",\"Einzelunternehmen\",\"e.K.\",\"Sonstige\"],\"companyNameLabel\":\"Firmenname\",\"companyNamePlaceholder\":\"Muster GmbH\",\"legalFormLabel\":\"Rechtsform\",\"employeesLabel\":\"Anzahl Mitarbeiter\",\"streetLabel\":\"Straße & Hausnummer\",\"streetPlaceholder\":\"Musterstraße 42\",\"postalCodeLabel\":\"PLZ\",\"postalCodePlaceholder\":\"12345\",\"cityLabel\":\"Ort\",\"cityPlaceholder\":\"Berlin\",\"websiteLabel\":\"Website\",\"websitePlaceholder\":\"https://www.ihrewebsite.de\"},\"contact\":{\"title\":\"Kontaktperson\",\"subtitle\":\"Ansprechpartner für die Mitgliedschaft\",\"salutations\":[\"Herr\",\"Frau\",\"Divers\"],\"salutationLabel\":\"Anrede\",\"firstNameLabel\":\"Vorname\",\"firstNamePlaceholder\":\"Max\",\"lastNameLabel\":\"Nachname\",\"lastNamePlaceholder\":\"Mustermann\",\"positionLabel\":\"Position / Funktion\",\"positionPlaceholder\":\"z. B. Geschäftsführer\",\"emailLabel\":\"E-Mail-Adresse\",\"emailPlaceholder\":\"max@muster.de\",\"phoneLabel\":\"Telefon\",\"phonePlaceholder\":\"+49 30 123456\"},\"details\":{\"title\":\"Mitgliedschaft & Details\",\"subtitle\":\"Beitragsübersicht und Eintrittsdatum\",\"entryDateLabel\":\"Gewünschtes Eintrittsdatum\",\"referralLabel\":\"Wie wurden Sie aufmerksam?\",\"referralOptions\":[\"Empfehlung\",\"Veranstaltung\",\"Google\",\"Social Media\",\"Presse\",\"Sonstiges\"],\"motivationLabel\":\"Ihre Motivation (optional)\",\"motivationPlaceholder\":\"Was erhoffen Sie sich von der Mitgliedschaft beim BMP e.V.?\",\"motivationMaxLength\":500},\"payment\":{\"title\":\"SEPA-Lastschriftmandat\",\"subtitle\":\"Bankverbindung für den Beitragseinzug\",\"mandateText\":\"Ich ermächtige den BMP e.V., Zahlungen von meinem Konto mittels Lastschrift einzuziehen. Zugleich weise ich mein Kreditinstitut an, die vom BMP e.V. auf mein Konto gezogenen Lastschriften einzulösen. Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des belasteten Betrages verlangen. Es gelten dabei die mit meinem Kreditinstitut vereinbarten Bedingungen. Die Mandatsreferenz wird separat mitgeteilt. Gläubiger-Identifikationsnummer: DE98ZZZ09999999999.\",\"accountHolderLabel\":\"Kontoinhaber\",\"accountHolderPlaceholder\":\"Max Mustermann\",\"ibanLabel\":\"IBAN\",\"ibanPlaceholder\":\"DE00 0000 0000 0000 0000 00\",\"ibanValidLabel\":\"✓ OK\",\"ibanPendingLabel\":\"…\",\"bicLabel\":\"BIC\",\"bicPlaceholder\":\"BELADEBEXXX\",\"bicAutoPlaceholder\":\"Wird ausgefüllt\",\"bankLabel\":\"Bank / Kreditinstitut\",\"bankPlaceholder\":\"Berliner Sparkasse\",\"sepaCheckboxLabel\":\"Ich bestätige das SEPA-Lastschriftmandat und ermächtige den BMP e.V. zum Einzug.\"},\"summary\":{\"title\":\"Zusammenfassung & Abschluss\",\"subtitle\":\"Bitte prüfen Sie Ihre Angaben\",\"companyAccordion\":\"Unternehmen\",\"contactAccordion\":\"Kontaktperson\",\"paymentAccordion\":\"Zahlung\",\"requiredTitle\":\"Pflichtbestätigungen\",\"optionalTitle\":\"Optional\",\"labels\":{\"companyName\":\"Firmenname\",\"legalForm\":\"Rechtsform\",\"address\":\"Adresse\",\"employees\":\"Mitarbeiter\",\"website\":\"Website\",\"name\":\"Name\",\"position\":\"Position\",\"email\":\"E-Mail\",\"phone\":\"Telefon\",\"accountHolder\":\"Kontoinhaber\",\"iban\":\"IBAN\",\"bic\":\"BIC\",\"bank\":\"Bank\",\"entryDate\":\"Eintrittsdatum\",\"annualContribution\":\"Jahresbeitrag\"},\"consents\":{\"satzung\":\"Ich habe die Satzung des BMP e.V. gelesen und erkenne sie an.\",\"datenschutz\":\"Ich habe die Datenschutzerklärung gelesen und stimme zu.\",\"widerruf\":\"Ich habe die Kündigungsfrist zur Kenntnis genommen (1 Jahr zum Jahresende).\",\"newsletter\":\"Ich möchte elektronische Informationen, Einladungen und den Newsletter erhalten.\",\"websitePub\":\"Meinen Firmennamen auf der Website des BMP e.V. als Mitglied veröffentlichen.\"}}},\"success\":{\"heading\":\"Ihr Antrag ist eingegangen.\",\"message\":\"Wir melden uns innerhalb von 5 Werktagen bei Ihnen.\",\"nextStepsTitle\":\"Ihre nächsten Schritte\",\"steps\":[{\"num\":\"1\",\"title\":\"Bestätigung per E-Mail\",\"desc\":\"Sie erhalten in Kürze eine Eingangsbestätigung.\"},{\"num\":\"2\",\"title\":\"Prüfung durch den Vorstand\",\"desc\":\"Ihr Antrag wird in der nächsten Sitzung behandelt.\"},{\"num\":\"3\",\"title\":\"Willkommen im BMP e.V.\",\"desc\":\"Nach Bestätigung erhalten Sie Ihre Mitgliedsdaten.\"}]}}'" + }, + "mitglied_werden_testimonials_eyebrow": { + "name": "mitglied_werden_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Mitglieder'" + }, + "mitglied_werden_testimonials_heading": { + "name": "mitglied_werden_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS MITGLIEDER SAGEN.'" + }, + "mitglied_werden_faq_eyebrow": { + "name": "mitglied_werden_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige Fragen'" + }, + "mitglied_werden_faq_heading": { + "name": "mitglied_werden_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'FAQ.'" + }, + "mitglied_werden_bottom_cta_eyebrow": { + "name": "mitglied_werden_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werde Teil des BMP'" + }, + "mitglied_werden_bottom_cta_heading": { + "name": "mitglied_werden_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERSTÜTZE. NETZWERKE. WIRKE.'" + }, + "mitglied_werden_bottom_cta_cta_label": { + "name": "mitglied_werden_bottom_cta_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden'" + }, + "mitglied_werden_bottom_cta_cta_href": { + "name": "mitglied_werden_bottom_cta_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "pages_hero_hero_media_idx": { + "name": "pages_hero_hero_media_idx", + "columns": [ + "hero_media_id" + ], + "isUnique": false + }, + "pages_home_hero_home_hero_background_image_idx": { + "name": "pages_home_hero_home_hero_background_image_idx", + "columns": [ + "home_hero_background_image_id" + ], + "isUnique": false + }, + "pages_home_quick_check_home_quick_check_image_idx": { + "name": "pages_home_quick_check_home_quick_check_image_idx", + "columns": [ + "home_quick_check_image_id" + ], + "isUnique": false + }, + "pages_home_intro_home_intro_image_idx": { + "name": "pages_home_intro_home_intro_image_idx", + "columns": [ + "home_intro_image_id" + ], + "isUnique": false + }, + "pages_home_winners_home_winners_fallback_image_idx": { + "name": "pages_home_winners_home_winners_fallback_image_idx", + "columns": [ + "home_winners_fallback_image_id" + ], + "isUnique": false + }, + "pages_home_benefits_home_benefits_image_idx": { + "name": "pages_home_benefits_home_benefits_image_idx", + "columns": [ + "home_benefits_image_id" + ], + "isUnique": false + }, + "pages_home_application_home_application_award_image_idx": { + "name": "pages_home_application_home_application_award_image_idx", + "columns": [ + "home_application_award_image_id" + ], + "isUnique": false + }, + "pages_home_video_modal_home_video_modal_video_idx": { + "name": "pages_home_video_modal_home_video_modal_video_idx", + "columns": [ + "home_video_modal_video_id" + ], + "isUnique": false + }, + "pages_contact_hero_contact_hero_background_image_idx": { + "name": "pages_contact_hero_contact_hero_background_image_idx", + "columns": [ + "contact_hero_background_image_id" + ], + "isUnique": false + }, + "pages_contact_info_contact_info_form_image_idx": { + "name": "pages_contact_info_contact_info_form_image_idx", + "columns": [ + "contact_info_form_image_id" + ], + "isUnique": false + }, + "pages_participation_hero_participation_hero_background_i_idx": { + "name": "pages_participation_hero_participation_hero_background_i_idx", + "columns": [ + "participation_hero_background_image_id" + ], + "isUnique": false + }, + "pages_participation_application_form_participation_appli_idx": { + "name": "pages_participation_application_form_participation_appli_idx", + "columns": [ + "participation_application_form_image_id" + ], + "isUnique": false + }, + "pages_about_hero_about_hero_background_image_idx": { + "name": "pages_about_hero_about_hero_background_image_idx", + "columns": [ + "about_hero_background_image_id" + ], + "isUnique": false + }, + "pages_about_prize_about_prize_image_idx": { + "name": "pages_about_prize_about_prize_image_idx", + "columns": [ + "about_prize_image_id" + ], + "isUnique": false + }, + "pages_about_mittelstand_about_mittelstand_image_idx": { + "name": "pages_about_mittelstand_about_mittelstand_image_idx", + "columns": [ + "about_mittelstand_image_id" + ], + "isUnique": false + }, + "pages_about_highlights_about_highlights_fallback_image_idx": { + "name": "pages_about_highlights_about_highlights_fallback_image_idx", + "columns": [ + "about_highlights_fallback_image_id" + ], + "isUnique": false + }, + "pages_preistraeger_index_hero_preistraeger_index_hero_im_idx": { + "name": "pages_preistraeger_index_hero_preistraeger_index_hero_im_idx", + "columns": [ + "preistraeger_index_hero_image_id" + ], + "isUnique": false + }, + "pages_preistraeger_index_card_preistraeger_index_card_fa_idx": { + "name": "pages_preistraeger_index_card_preistraeger_index_card_fa_idx", + "columns": [ + "preistraeger_index_card_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_hero_press_index_hero_image_idx": { + "name": "pages_press_index_hero_press_index_hero_image_idx", + "columns": [ + "press_index_hero_image_id" + ], + "isUnique": false + }, + "pages_press_index_events_press_index_events_collection_f_idx": { + "name": "pages_press_index_events_press_index_events_collection_f_idx", + "columns": [ + "press_index_events_collection_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_news_press_index_news_collection_fallb_idx": { + "name": "pages_press_index_news_press_index_news_collection_fallb_idx", + "columns": [ + "press_index_news_collection_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_downloads_press_index_downloads_kit_fi_idx": { + "name": "pages_press_index_downloads_press_index_downloads_kit_fi_idx", + "columns": [ + "press_index_downloads_kit_file_id" + ], + "isUnique": false + }, + "pages_netzwerk_hero_netzwerk_hero_image_idx": { + "name": "pages_netzwerk_hero_netzwerk_hero_image_idx", + "columns": [ + "netzwerk_hero_image_id" + ], + "isUnique": false + }, + "pages_netzwerk_sponsoring_netzwerk_sponsoring_image_idx": { + "name": "pages_netzwerk_sponsoring_netzwerk_sponsoring_image_idx", + "columns": [ + "netzwerk_sponsoring_image_id" + ], + "isUnique": false + }, + "pages_mitglied_werden_hero_mitglied_werden_hero_image_idx": { + "name": "pages_mitglied_werden_hero_mitglied_werden_hero_image_idx", + "columns": [ + "mitglied_werden_hero_image_id" + ], + "isUnique": false + }, + "pages_mitglied_werden_form_intro_mitglied_werden_form_in_idx": { + "name": "pages_mitglied_werden_form_intro_mitglied_werden_form_in_idx", + "columns": [ + "mitglied_werden_form_intro_image_id" + ], + "isUnique": false + }, + "pages_meta_meta_image_idx": { + "name": "pages_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "pages_spa_path_idx": { + "name": "pages_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "pages_slug_idx": { + "name": "pages_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "pages_updated_at_idx": { + "name": "pages_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "pages_created_at_idx": { + "name": "pages_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "pages__status_idx": { + "name": "pages__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_hero_media_id_media_id_fk": { + "name": "pages_hero_media_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "hero_media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_hero_background_image_id_media_id_fk": { + "name": "pages_home_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_quick_check_image_id_media_id_fk": { + "name": "pages_home_quick_check_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_quick_check_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_intro_image_id_media_id_fk": { + "name": "pages_home_intro_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_winners_fallback_image_id_media_id_fk": { + "name": "pages_home_winners_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_winners_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_benefits_image_id_media_id_fk": { + "name": "pages_home_benefits_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_benefits_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_application_award_image_id_media_id_fk": { + "name": "pages_home_application_award_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_application_award_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_video_modal_video_id_media_id_fk": { + "name": "pages_home_video_modal_video_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_video_modal_video_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_contact_hero_background_image_id_media_id_fk": { + "name": "pages_contact_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "contact_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_contact_info_form_image_id_media_id_fk": { + "name": "pages_contact_info_form_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "contact_info_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_participation_hero_background_image_id_media_id_fk": { + "name": "pages_participation_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "participation_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_participation_application_form_image_id_media_id_fk": { + "name": "pages_participation_application_form_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "participation_application_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_hero_background_image_id_media_id_fk": { + "name": "pages_about_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_prize_image_id_media_id_fk": { + "name": "pages_about_prize_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_prize_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_mittelstand_image_id_media_id_fk": { + "name": "pages_about_mittelstand_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_mittelstand_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_highlights_fallback_image_id_media_id_fk": { + "name": "pages_about_highlights_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_highlights_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_preistraeger_index_hero_image_id_media_id_fk": { + "name": "pages_preistraeger_index_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "preistraeger_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_preistraeger_index_card_fallback_image_id_media_id_fk": { + "name": "pages_preistraeger_index_card_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "preistraeger_index_card_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_hero_image_id_media_id_fk": { + "name": "pages_press_index_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_events_collection_fallback_image_id_media_id_fk": { + "name": "pages_press_index_events_collection_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_events_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_news_collection_fallback_image_id_media_id_fk": { + "name": "pages_press_index_news_collection_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_news_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_downloads_kit_file_id_media_id_fk": { + "name": "pages_press_index_downloads_kit_file_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_downloads_kit_file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_netzwerk_hero_image_id_media_id_fk": { + "name": "pages_netzwerk_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "netzwerk_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_netzwerk_sponsoring_image_id_media_id_fk": { + "name": "pages_netzwerk_sponsoring_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "netzwerk_sponsoring_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_mitglied_werden_hero_image_id_media_id_fk": { + "name": "pages_mitglied_werden_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "mitglied_werden_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_mitglied_werden_form_intro_image_id_media_id_fk": { + "name": "pages_mitglied_werden_form_intro_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "mitglied_werden_form_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_meta_image_id_media_id_fk": { + "name": "pages_meta_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_rels": { + "name": "pages_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_rels_order_idx": { + "name": "pages_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "pages_rels_parent_idx": { + "name": "pages_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "pages_rels_path_idx": { + "name": "pages_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "pages_rels_pages_id_idx": { + "name": "pages_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "pages_rels_posts_id_idx": { + "name": "pages_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "pages_rels_categories_id_idx": { + "name": "pages_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "pages_rels_preistraeger_id_idx": { + "name": "pages_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_rels_parent_fk": { + "name": "pages_rels_parent_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_pages_fk": { + "name": "pages_rels_pages_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_posts_fk": { + "name": "pages_rels_posts_fk", + "tableFrom": "pages_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_categories_fk": { + "name": "pages_rels_categories_fk", + "tableFrom": "pages_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_preistraeger_fk": { + "name": "pages_rels_preistraeger_fk", + "tableFrom": "pages_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_hero_links": { + "name": "_pages_v_version_hero_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_hero_links_order_idx": { + "name": "_pages_v_version_hero_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_hero_links_parent_id_idx": { + "name": "_pages_v_version_hero_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_hero_links_parent_id_fk": { + "name": "_pages_v_version_hero_links_parent_id_fk", + "tableFrom": "_pages_v_version_hero_links", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_cta_links": { + "name": "_pages_v_blocks_cta_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_cta_links_order_idx": { + "name": "_pages_v_blocks_cta_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_links_parent_id_idx": { + "name": "_pages_v_blocks_cta_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_cta_links_parent_id_fk": { + "name": "_pages_v_blocks_cta_links_parent_id_fk", + "tableFrom": "_pages_v_blocks_cta_links", + "tableTo": "_pages_v_blocks_cta", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_cta": { + "name": "_pages_v_blocks_cta", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_cta_order_idx": { + "name": "_pages_v_blocks_cta_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_parent_id_idx": { + "name": "_pages_v_blocks_cta_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_path_idx": { + "name": "_pages_v_blocks_cta_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_cta_parent_id_fk": { + "name": "_pages_v_blocks_cta_parent_id_fk", + "tableFrom": "_pages_v_blocks_cta", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_content_columns": { + "name": "_pages_v_blocks_content_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "size": { + "name": "size", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oneThird'" + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_link": { + "name": "enable_link", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_content_columns_order_idx": { + "name": "_pages_v_blocks_content_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_content_columns_parent_id_idx": { + "name": "_pages_v_blocks_content_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_content_columns_parent_id_fk": { + "name": "_pages_v_blocks_content_columns_parent_id_fk", + "tableFrom": "_pages_v_blocks_content_columns", + "tableTo": "_pages_v_blocks_content", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_content": { + "name": "_pages_v_blocks_content", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_content_order_idx": { + "name": "_pages_v_blocks_content_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_content_parent_id_idx": { + "name": "_pages_v_blocks_content_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_content_path_idx": { + "name": "_pages_v_blocks_content_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_content_parent_id_fk": { + "name": "_pages_v_blocks_content_parent_id_fk", + "tableFrom": "_pages_v_blocks_content", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_media_block": { + "name": "_pages_v_blocks_media_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_media_block_order_idx": { + "name": "_pages_v_blocks_media_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_parent_id_idx": { + "name": "_pages_v_blocks_media_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_path_idx": { + "name": "_pages_v_blocks_media_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_media_idx": { + "name": "_pages_v_blocks_media_block_media_idx", + "columns": [ + "media_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_media_block_media_id_media_id_fk": { + "name": "_pages_v_blocks_media_block_media_id_media_id_fk", + "tableFrom": "_pages_v_blocks_media_block", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_media_block_parent_id_fk": { + "name": "_pages_v_blocks_media_block_parent_id_fk", + "tableFrom": "_pages_v_blocks_media_block", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_archive": { + "name": "_pages_v_blocks_archive", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "populate_by": { + "name": "populate_by", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'collection'" + }, + "relation_to": { + "name": "relation_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'posts'" + }, + "limit": { + "name": "limit", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 10 + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_archive_order_idx": { + "name": "_pages_v_blocks_archive_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_archive_parent_id_idx": { + "name": "_pages_v_blocks_archive_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_archive_path_idx": { + "name": "_pages_v_blocks_archive_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_archive_parent_id_fk": { + "name": "_pages_v_blocks_archive_parent_id_fk", + "tableFrom": "_pages_v_blocks_archive", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_form_block": { + "name": "_pages_v_blocks_form_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "form_id": { + "name": "form_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_intro": { + "name": "enable_intro", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "intro_content": { + "name": "intro_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_form_block_order_idx": { + "name": "_pages_v_blocks_form_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_form_block_parent_id_idx": { + "name": "_pages_v_blocks_form_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_form_block_path_idx": { + "name": "_pages_v_blocks_form_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "_pages_v_blocks_form_block_form_idx": { + "name": "_pages_v_blocks_form_block_form_idx", + "columns": [ + "form_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_form_block_form_id_forms_id_fk": { + "name": "_pages_v_blocks_form_block_form_id_forms_id_fk", + "tableFrom": "_pages_v_blocks_form_block", + "tableTo": "forms", + "columnsFrom": [ + "form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_form_block_parent_id_fk": { + "name": "_pages_v_blocks_form_block_parent_id_fk", + "tableFrom": "_pages_v_blocks_form_block", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_hero_partners": { + "name": "_pages_v_version_home_hero_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_hero_partners_order_idx": { + "name": "_pages_v_version_home_hero_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_hero_partners_parent_id_idx": { + "name": "_pages_v_version_home_hero_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_hero_partners_parent_id_fk": { + "name": "_pages_v_version_home_hero_partners_parent_id_fk", + "tableFrom": "_pages_v_version_home_hero_partners", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_quick_check_criteria": { + "name": "_pages_v_version_home_quick_check_criteria", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_quick_check_criteria_order_idx": { + "name": "_pages_v_version_home_quick_check_criteria_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_quick_check_criteria_parent_id_idx": { + "name": "_pages_v_version_home_quick_check_criteria_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_quick_check_criteria_parent_id_fk": { + "name": "_pages_v_version_home_quick_check_criteria_parent_id_fk", + "tableFrom": "_pages_v_version_home_quick_check_criteria", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_intro_stats": { + "name": "_pages_v_version_home_intro_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_intro_stats_order_idx": { + "name": "_pages_v_version_home_intro_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_intro_stats_parent_id_idx": { + "name": "_pages_v_version_home_intro_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_intro_stats_parent_id_fk": { + "name": "_pages_v_version_home_intro_stats_parent_id_fk", + "tableFrom": "_pages_v_version_home_intro_stats", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_testimonials_items": { + "name": "_pages_v_version_home_testimonials_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_testimonials_items_order_idx": { + "name": "_pages_v_version_home_testimonials_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_testimonials_items_parent_id_idx": { + "name": "_pages_v_version_home_testimonials_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_version_home_testimonials_items_image_idx": { + "name": "_pages_v_version_home_testimonials_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_testimonials_items_image_id_media_id_fk": { + "name": "_pages_v_version_home_testimonials_items_image_id_media_id_fk", + "tableFrom": "_pages_v_version_home_testimonials_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_testimonials_items_parent_id_fk": { + "name": "_pages_v_version_home_testimonials_items_parent_id_fk", + "tableFrom": "_pages_v_version_home_testimonials_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_benefits_items": { + "name": "_pages_v_version_home_benefits_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_benefits_items_order_idx": { + "name": "_pages_v_version_home_benefits_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_benefits_items_parent_id_idx": { + "name": "_pages_v_version_home_benefits_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_benefits_items_parent_id_fk": { + "name": "_pages_v_version_home_benefits_items_parent_id_fk", + "tableFrom": "_pages_v_version_home_benefits_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_application_benefits": { + "name": "_pages_v_version_home_application_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_application_benefits_order_idx": { + "name": "_pages_v_version_home_application_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_application_benefits_parent_id_idx": { + "name": "_pages_v_version_home_application_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_application_benefits_parent_id_fk": { + "name": "_pages_v_version_home_application_benefits_parent_id_fk", + "tableFrom": "_pages_v_version_home_application_benefits", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_self_steps_v": { + "name": "_home_self_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_self_steps_v_order_idx": { + "name": "_home_self_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_self_steps_v_parent_id_idx": { + "name": "_home_self_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_self_steps_v_parent_id_fk": { + "name": "_home_self_steps_v_parent_id_fk", + "tableFrom": "_home_self_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_nom_steps_v": { + "name": "_home_nom_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_nom_steps_v_order_idx": { + "name": "_home_nom_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_nom_steps_v_parent_id_idx": { + "name": "_home_nom_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_nom_steps_v_parent_id_fk": { + "name": "_home_nom_steps_v_parent_id_fk", + "tableFrom": "_home_nom_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_emp_opts_v": { + "name": "_home_emp_opts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_emp_opts_v_order_idx": { + "name": "_home_emp_opts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_emp_opts_v_parent_id_idx": { + "name": "_home_emp_opts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_emp_opts_v_parent_id_fk": { + "name": "_home_emp_opts_v_parent_id_fk", + "tableFrom": "_home_emp_opts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_items": { + "name": "_pages_v_version_contact_info_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "lines": { + "name": "lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_items_order_idx": { + "name": "_pages_v_version_contact_info_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_items_parent_id_idx": { + "name": "_pages_v_version_contact_info_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_items_parent_id_fk": { + "name": "_pages_v_version_contact_info_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_form_copy_steps": { + "name": "_pages_v_version_contact_info_form_copy_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_form_copy_steps_order_idx": { + "name": "_pages_v_version_contact_info_form_copy_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_form_copy_steps_parent_id_idx": { + "name": "_pages_v_version_contact_info_form_copy_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_form_copy_steps_parent_id_fk": { + "name": "_pages_v_version_contact_info_form_copy_steps_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_form_copy_steps", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_form_copy_subjects": { + "name": "_pages_v_version_contact_info_form_copy_subjects", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_form_copy_subjects_order_idx": { + "name": "_pages_v_version_contact_info_form_copy_subjects_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_form_copy_subjects_parent_id_idx": { + "name": "_pages_v_version_contact_info_form_copy_subjects_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_form_copy_subjects_parent_id_fk": { + "name": "_pages_v_version_contact_info_form_copy_subjects_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_form_copy_subjects", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_deadlines_items": { + "name": "_pages_v_version_contact_deadlines_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_deadlines_items_order_idx": { + "name": "_pages_v_version_contact_deadlines_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_deadlines_items_parent_id_idx": { + "name": "_pages_v_version_contact_deadlines_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_deadlines_items_parent_id_fk": { + "name": "_pages_v_version_contact_deadlines_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_deadlines_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_faq_items": { + "name": "_pages_v_version_contact_faq_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_faq_items_order_idx": { + "name": "_pages_v_version_contact_faq_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_faq_items_parent_id_idx": { + "name": "_pages_v_version_contact_faq_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_faq_items_parent_id_fk": { + "name": "_pages_v_version_contact_faq_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_faq_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_proc_steps_v": { + "name": "_proc_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_proc_steps_v_order_idx": { + "name": "_proc_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_proc_steps_v_parent_id_idx": { + "name": "_proc_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_proc_steps_v_parent_id_fk": { + "name": "_proc_steps_v_parent_id_fk", + "tableFrom": "_proc_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_elig_crit_v": { + "name": "_elig_crit_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_elig_crit_v_order_idx": { + "name": "_elig_crit_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_elig_crit_v_parent_id_idx": { + "name": "_elig_crit_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_elig_crit_v_parent_id_fk": { + "name": "_elig_crit_v_parent_id_fk", + "tableFrom": "_elig_crit_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_elig_notes_v": { + "name": "_elig_notes_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'building2'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_elig_notes_v_order_idx": { + "name": "_elig_notes_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_elig_notes_v_parent_id_idx": { + "name": "_elig_notes_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_elig_notes_v_parent_id_fk": { + "name": "_elig_notes_v_parent_id_fk", + "tableFrom": "_elig_notes_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_app_inst_v": { + "name": "_app_inst_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_app_inst_v_order_idx": { + "name": "_app_inst_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_app_inst_v_parent_id_idx": { + "name": "_app_inst_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_app_inst_v_parent_id_fk": { + "name": "_app_inst_v_parent_id_fk", + "tableFrom": "_app_inst_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_way_facts_v": { + "name": "_way_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_way_facts_v_order_idx": { + "name": "_way_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_way_facts_v_parent_id_idx": { + "name": "_way_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_way_facts_v_parent_id_fk": { + "name": "_way_facts_v_parent_id_fk", + "tableFrom": "_way_facts_v", + "tableTo": "_app_ways_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_app_ways_v": { + "name": "_app_ways_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'send'" + }, + "featured": { + "name": "featured", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "list_type": { + "name": "list_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'facts'" + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_app_ways_v_order_idx": { + "name": "_app_ways_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_app_ways_v_parent_id_idx": { + "name": "_app_ways_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_app_ways_v_parent_id_fk": { + "name": "_app_ways_v_parent_id_fk", + "tableFrom": "_app_ways_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_date_mob_v": { + "name": "_date_mob_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_date_mob_v_order_idx": { + "name": "_date_mob_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_date_mob_v_parent_id_idx": { + "name": "_date_mob_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_date_mob_v_parent_id_fk": { + "name": "_date_mob_v_parent_id_fk", + "tableFrom": "_date_mob_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_date_desk_v": { + "name": "_date_desk_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_date_desk_v_order_idx": { + "name": "_date_desk_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_date_desk_v_parent_id_idx": { + "name": "_date_desk_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_date_desk_v_parent_id_fk": { + "name": "_date_desk_v_parent_id_fk", + "tableFrom": "_date_desk_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_award_cards_v": { + "name": "_award_cards_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "article_cta_label": { + "name": "article_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel lesen'" + }, + "article_cta_url": { + "name": "article_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "mailto_cta_label": { + "name": "mailto_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "mailto_cta_url": { + "name": "mailto_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mailto:info@bmp-bayern.de'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_award_cards_v_order_idx": { + "name": "_award_cards_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_award_cards_v_parent_id_idx": { + "name": "_award_cards_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_award_cards_v_image_idx": { + "name": "_award_cards_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_award_cards_v_image_id_media_id_fk": { + "name": "_award_cards_v_image_id_media_id_fk", + "tableFrom": "_award_cards_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_award_cards_v_parent_id_fk": { + "name": "_award_cards_v_parent_id_fk", + "tableFrom": "_award_cards_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_form_facts_v": { + "name": "_form_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_form_facts_v_order_idx": { + "name": "_form_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_form_facts_v_parent_id_idx": { + "name": "_form_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_form_facts_v_parent_id_fk": { + "name": "_form_facts_v_parent_id_fk", + "tableFrom": "_form_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_self_steps_v": { + "name": "_self_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_self_steps_v_order_idx": { + "name": "_self_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_self_steps_v_parent_id_idx": { + "name": "_self_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_self_steps_v_parent_id_fk": { + "name": "_self_steps_v_parent_id_fk", + "tableFrom": "_self_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_nom_steps_v": { + "name": "_nom_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_nom_steps_v_order_idx": { + "name": "_nom_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_nom_steps_v_parent_id_idx": { + "name": "_nom_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_nom_steps_v_parent_id_fk": { + "name": "_nom_steps_v_parent_id_fk", + "tableFrom": "_nom_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_emp_opts_v": { + "name": "_emp_opts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_emp_opts_v_order_idx": { + "name": "_emp_opts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_emp_opts_v_parent_id_idx": { + "name": "_emp_opts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_emp_opts_v_parent_id_fk": { + "name": "_emp_opts_v_parent_id_fk", + "tableFrom": "_emp_opts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_hero_stats_v": { + "name": "_about_hero_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_hero_stats_v_order_idx": { + "name": "_about_hero_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_hero_stats_v_parent_id_idx": { + "name": "_about_hero_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_hero_stats_v_parent_id_fk": { + "name": "_about_hero_stats_v_parent_id_fk", + "tableFrom": "_about_hero_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_prize_body_v": { + "name": "_about_prize_body_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_prize_body_v_order_idx": { + "name": "_about_prize_body_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_prize_body_v_parent_id_idx": { + "name": "_about_prize_body_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_prize_body_v_parent_id_fk": { + "name": "_about_prize_body_v_parent_id_fk", + "tableFrom": "_about_prize_body_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_prize_facts_v": { + "name": "_about_prize_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_prize_facts_v_order_idx": { + "name": "_about_prize_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_prize_facts_v_parent_id_idx": { + "name": "_about_prize_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_prize_facts_v_parent_id_fk": { + "name": "_about_prize_facts_v_parent_id_fk", + "tableFrom": "_about_prize_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_mid_body_v": { + "name": "_about_mid_body_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_mid_body_v_order_idx": { + "name": "_about_mid_body_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_mid_body_v_parent_id_idx": { + "name": "_about_mid_body_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_mid_body_v_parent_id_fk": { + "name": "_about_mid_body_v_parent_id_fk", + "tableFrom": "_about_mid_body_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_tst_items_v": { + "name": "_about_tst_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_tst_items_v_order_idx": { + "name": "_about_tst_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_tst_items_v_parent_id_idx": { + "name": "_about_tst_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_about_tst_items_v_image_idx": { + "name": "_about_tst_items_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_tst_items_v_image_id_media_id_fk": { + "name": "_about_tst_items_v_image_id_media_id_fk", + "tableFrom": "_about_tst_items_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_about_tst_items_v_parent_id_fk": { + "name": "_about_tst_items_v_parent_id_fk", + "tableFrom": "_about_tst_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_hist_items_v": { + "name": "_about_hist_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_hist_items_v_order_idx": { + "name": "_about_hist_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_hist_items_v_parent_id_idx": { + "name": "_about_hist_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_hist_items_v_parent_id_fk": { + "name": "_about_hist_items_v_parent_id_fk", + "tableFrom": "_about_hist_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_goal_items_v": { + "name": "_about_goal_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_goal_items_v_order_idx": { + "name": "_about_goal_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_goal_items_v_parent_id_idx": { + "name": "_about_goal_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_goal_items_v_parent_id_fk": { + "name": "_about_goal_items_v_parent_id_fk", + "tableFrom": "_about_goal_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_val_items_v": { + "name": "_about_val_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_val_items_v_order_idx": { + "name": "_about_val_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_val_items_v_parent_id_idx": { + "name": "_about_val_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_val_items_v_parent_id_fk": { + "name": "_about_val_items_v_parent_id_fk", + "tableFrom": "_about_val_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_imp_sections_v": { + "name": "_imp_sections_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_imp_sections_v_order_idx": { + "name": "_imp_sections_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_imp_sections_v_parent_id_idx": { + "name": "_imp_sections_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_imp_sections_v_parent_id_fk": { + "name": "_imp_sections_v_parent_id_fk", + "tableFrom": "_imp_sections_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_data_sections_v": { + "name": "_data_sections_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_data_sections_v_order_idx": { + "name": "_data_sections_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_data_sections_v_parent_id_idx": { + "name": "_data_sections_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_data_sections_v_parent_id_fk": { + "name": "_data_sections_v_parent_id_fk", + "tableFrom": "_data_sections_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_press_index_events_status_labels": { + "name": "_pages_v_version_press_index_events_status_labels", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_press_index_events_status_labels_order_idx": { + "name": "_pages_v_version_press_index_events_status_labels_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_press_index_events_status_labels_parent_id_idx": { + "name": "_pages_v_version_press_index_events_status_labels_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_press_index_events_status_labels_parent_id_fk": { + "name": "_pages_v_version_press_index_events_status_labels_parent_id_fk", + "tableFrom": "_pages_v_version_press_index_events_status_labels", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_press_events_fb_v": { + "name": "_press_events_fb_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_press_events_fb_v_order_idx": { + "name": "_press_events_fb_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_press_events_fb_v_parent_id_idx": { + "name": "_press_events_fb_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_press_events_fb_v_image_idx": { + "name": "_press_events_fb_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_press_events_fb_v_image_id_media_id_fk": { + "name": "_press_events_fb_v_image_id_media_id_fk", + "tableFrom": "_press_events_fb_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_press_events_fb_v_parent_id_fk": { + "name": "_press_events_fb_v_parent_id_fk", + "tableFrom": "_press_events_fb_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_press_news_fb_v": { + "name": "_press_news_fb_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_press_news_fb_v_order_idx": { + "name": "_press_news_fb_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_press_news_fb_v_parent_id_idx": { + "name": "_press_news_fb_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_press_news_fb_v_image_idx": { + "name": "_press_news_fb_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_press_news_fb_v_image_id_media_id_fk": { + "name": "_press_news_fb_v_image_id_media_id_fk", + "tableFrom": "_press_news_fb_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_press_news_fb_v_parent_id_fk": { + "name": "_press_news_fb_v_parent_id_fk", + "tableFrom": "_press_news_fb_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_upload_stats_v": { + "name": "_upload_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_upload_stats_v_order_idx": { + "name": "_upload_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_upload_stats_v_parent_id_idx": { + "name": "_upload_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_upload_stats_v_parent_id_fk": { + "name": "_upload_stats_v_parent_id_fk", + "tableFrom": "_upload_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_upload_req_cards_v": { + "name": "_upload_req_cards_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_upload_req_cards_v_order_idx": { + "name": "_upload_req_cards_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_upload_req_cards_v_parent_id_idx": { + "name": "_upload_req_cards_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_upload_req_cards_v_parent_id_fk": { + "name": "_upload_req_cards_v_parent_id_fk", + "tableFrom": "_upload_req_cards_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_patrons_v": { + "name": "_network_patrons_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line1": { + "name": "title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line2": { + "name": "title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "institution": { + "name": "institution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_patrons_v_order_idx": { + "name": "_network_patrons_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_patrons_v_parent_id_idx": { + "name": "_network_patrons_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_patrons_v_image_upload_idx": { + "name": "_network_patrons_v_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_patrons_v_image_upload_id_media_id_fk": { + "name": "_network_patrons_v_image_upload_id_media_id_fk", + "tableFrom": "_network_patrons_v", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_patrons_v_parent_id_fk": { + "name": "_network_patrons_v_parent_id_fk", + "tableFrom": "_network_patrons_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_stats_v": { + "name": "_network_jury_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_stats_v_order_idx": { + "name": "_network_jury_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_stats_v_parent_id_idx": { + "name": "_network_jury_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_stats_v_parent_id_fk": { + "name": "_network_jury_stats_v_parent_id_fk", + "tableFrom": "_network_jury_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_d_stats_v": { + "name": "_network_jury_d_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_d_stats_v_order_idx": { + "name": "_network_jury_d_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_d_stats_v_parent_id_idx": { + "name": "_network_jury_d_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_d_stats_v_parent_id_fk": { + "name": "_network_jury_d_stats_v_parent_id_fk", + "tableFrom": "_network_jury_d_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_v": { + "name": "_network_jury_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bio": { + "name": "bio", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_v_order_idx": { + "name": "_network_jury_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_v_parent_id_idx": { + "name": "_network_jury_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_jury_v_image_upload_idx": { + "name": "_network_jury_v_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_v_image_upload_id_media_id_fk": { + "name": "_network_jury_v_image_upload_id_media_id_fk", + "tableFrom": "_network_jury_v", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_jury_v_parent_id_fk": { + "name": "_network_jury_v_parent_id_fk", + "tableFrom": "_network_jury_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_eval_v": { + "name": "_network_eval_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_eval_v_order_idx": { + "name": "_network_eval_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_eval_v_parent_id_idx": { + "name": "_network_eval_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_eval_v_parent_id_fk": { + "name": "_network_eval_v_parent_id_fk", + "tableFrom": "_network_eval_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_tiers_v": { + "name": "_network_tiers_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_tiers_v_order_idx": { + "name": "_network_tiers_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_tiers_v_parent_id_idx": { + "name": "_network_tiers_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_tiers_v_parent_id_fk": { + "name": "_network_tiers_v_parent_id_fk", + "tableFrom": "_network_tiers_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_sponsor_bens_v": { + "name": "_network_sponsor_bens_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sub": { + "name": "sub", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_sponsor_bens_v_order_idx": { + "name": "_network_sponsor_bens_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_sponsor_bens_v_parent_id_idx": { + "name": "_network_sponsor_bens_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_sponsor_bens_v_parent_id_fk": { + "name": "_network_sponsor_bens_v_parent_id_fk", + "tableFrom": "_network_sponsor_bens_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_form_steps_v": { + "name": "_network_form_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_form_steps_v_order_idx": { + "name": "_network_form_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_form_steps_v_parent_id_idx": { + "name": "_network_form_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_form_steps_v_parent_id_fk": { + "name": "_network_form_steps_v_parent_id_fk", + "tableFrom": "_network_form_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_form_pkgs_v": { + "name": "_network_form_pkgs_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_form_pkgs_v_order_idx": { + "name": "_network_form_pkgs_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_form_pkgs_v_parent_id_idx": { + "name": "_network_form_pkgs_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_form_pkgs_v_parent_id_fk": { + "name": "_network_form_pkgs_v_parent_id_fk", + "tableFrom": "_network_form_pkgs_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_hero_stats_v": { + "name": "_member_hero_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_hero_stats_v_order_idx": { + "name": "_member_hero_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_hero_stats_v_parent_id_idx": { + "name": "_member_hero_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_hero_stats_v_parent_id_fk": { + "name": "_member_hero_stats_v_parent_id_fk", + "tableFrom": "_member_hero_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_benefits_v": { + "name": "_member_benefits_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'users'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_benefits_v_order_idx": { + "name": "_member_benefits_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_benefits_v_parent_id_idx": { + "name": "_member_benefits_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_benefits_v_parent_id_fk": { + "name": "_member_benefits_v_parent_id_fk", + "tableFrom": "_member_benefits_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_about_copy_v": { + "name": "_member_about_copy_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_about_copy_v_order_idx": { + "name": "_member_about_copy_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_about_copy_v_parent_id_idx": { + "name": "_member_about_copy_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_about_copy_v_parent_id_fk": { + "name": "_member_about_copy_v_parent_id_fk", + "tableFrom": "_member_about_copy_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_about_facts_v": { + "name": "_member_about_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_about_facts_v_order_idx": { + "name": "_member_about_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_about_facts_v_parent_id_idx": { + "name": "_member_about_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_about_facts_v_parent_id_fk": { + "name": "_member_about_facts_v_parent_id_fk", + "tableFrom": "_member_about_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_pricing_v": { + "name": "_member_pricing_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "max": { + "name": "max", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "annual": { + "name": "annual", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_pricing_v_order_idx": { + "name": "_member_pricing_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_pricing_v_parent_id_idx": { + "name": "_member_pricing_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_pricing_v_parent_id_fk": { + "name": "_member_pricing_v_parent_id_fk", + "tableFrom": "_member_pricing_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_app_options_v": { + "name": "_member_app_options_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "number": { + "name": "number", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "eyebrow": { + "name": "eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "file_id": { + "name": "file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "download": { + "name": "download", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_app_options_v_order_idx": { + "name": "_member_app_options_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_app_options_v_parent_id_idx": { + "name": "_member_app_options_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_member_app_options_v_file_idx": { + "name": "_member_app_options_v_file_idx", + "columns": [ + "file_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_app_options_v_file_id_media_id_fk": { + "name": "_member_app_options_v_file_id_media_id_fk", + "tableFrom": "_member_app_options_v", + "tableTo": "media", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_member_app_options_v_parent_id_fk": { + "name": "_member_app_options_v_parent_id_fk", + "tableFrom": "_member_app_options_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_promises_v": { + "name": "_member_promises_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_promises_v_order_idx": { + "name": "_member_promises_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_promises_v_parent_id_idx": { + "name": "_member_promises_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_promises_v_parent_id_fk": { + "name": "_member_promises_v_parent_id_fk", + "tableFrom": "_member_promises_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_quotes_v": { + "name": "_member_quotes_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "initials": { + "name": "initials", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_quotes_v_order_idx": { + "name": "_member_quotes_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_quotes_v_parent_id_idx": { + "name": "_member_quotes_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_quotes_v_parent_id_fk": { + "name": "_member_quotes_v_parent_id_fk", + "tableFrom": "_member_quotes_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_faq_v": { + "name": "_member_faq_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_faq_v_order_idx": { + "name": "_member_faq_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_faq_v_parent_id_idx": { + "name": "_member_faq_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_faq_v_parent_id_fk": { + "name": "_member_faq_v_parent_id_fk", + "tableFrom": "_member_faq_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v": { + "name": "_pages_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_type": { + "name": "version_hero_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'lowImpact'" + }, + "version_hero_rich_text": { + "name": "version_hero_rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_media_id": { + "name": "version_hero_media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_hero_background_image_id": { + "name": "version_home_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_hero_image_alt": { + "name": "version_home_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Awards Gala'" + }, + "version_home_hero_badge": { + "name": "version_home_hero_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026 geschlossen'" + }, + "version_home_hero_heading_line1": { + "name": "version_home_hero_heading_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERNS BESTE'" + }, + "version_home_hero_heading_accent": { + "name": "version_home_hero_heading_accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTÄNDLER.'" + }, + "version_home_hero_description": { + "name": "version_home_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis würdigt herausragende Leistungen – von Innovation über Nachhaltigkeit bis hin zur Exzellenz.'" + }, + "version_home_hero_primary_cta_label": { + "name": "version_home_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_home_hero_primary_cta_url": { + "name": "version_home_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_home_hero_secondary_cta_label": { + "name": "version_home_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "version_home_hero_secondary_cta_url": { + "name": "version_home_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_home_hero_video_label": { + "name": "version_home_hero_video_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Film abspielen'" + }, + "version_home_hero_partners_label": { + "name": "version_home_hero_partners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unsere Partner'" + }, + "version_home_quick_check_eyebrow": { + "name": "version_home_quick_check_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_home_quick_check_heading": { + "name": "version_home_quick_check_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SIND SIE\nBERECHTIGT?'" + }, + "version_home_quick_check_image_id": { + "name": "version_home_quick_check_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_quick_check_image_alt": { + "name": "version_home_quick_check_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bühne'" + }, + "version_home_quick_check_body": { + "name": "version_home_quick_check_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte KMU im Freistaat. Fünf Kriterien entscheiden, erfüllen Sie alle fünf, steht Ihrer Bewerbung nichts im Weg.'" + }, + "version_home_quick_check_note": { + "name": "version_home_quick_check_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auch ein Verbund bzw. eine Gemeinschaft von mittelständischen Unternehmen oder von mittelständischen Unternehmen und Organisationen/Institutionen mit Schwerpunkt in Bayern kann teilnehmen.'" + }, + "version_home_quick_check_cta_label": { + "name": "version_home_quick_check_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Weg zum Preis'" + }, + "version_home_quick_check_cta_url": { + "name": "version_home_quick_check_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_home_intro_eyebrow": { + "name": "version_home_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ein Gewinn für alle'" + }, + "version_home_intro_heading": { + "name": "version_home_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSZEICHNUNG\nFÜR DIE BESTEN.'" + }, + "version_home_intro_image_id": { + "name": "version_home_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_intro_image_alt": { + "name": "version_home_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Auszeichnung'" + }, + "version_home_intro_quote": { + "name": "version_home_intro_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Ein Unternehmen zu gründen erfordert nicht allein spezielle Fähigkeiten. Es erfordert Persönlichkeit!“'" + }, + "version_home_intro_body": { + "name": "version_home_intro_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir suchen Vorbilder, die sich trotz aller Risiken nicht scheuen, Visionen in Businesspläne und Ideen in Unternehmungen zu verwandeln, und das mit großem persönlichen Einsatz und Verantwortung für Ihre Mitarbeiter. Seit vielen Jahren würdigen wir herausragende unternehmerische Leistungen im Freistaat.'" + }, + "version_home_intro_cta_label": { + "name": "version_home_intro_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr über den Preis'" + }, + "version_home_intro_cta_url": { + "name": "version_home_intro_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/der-bmp'" + }, + "version_home_winners_eyebrow": { + "name": "version_home_winners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Success Stories'" + }, + "version_home_winners_heading": { + "name": "version_home_winners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DIE BESTEN UNTERNEHMEN IN BAYERN'" + }, + "version_home_winners_cta_label": { + "name": "version_home_winners_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_home_winners_cta_url": { + "name": "version_home_winners_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_home_winners_fallback_image_id": { + "name": "version_home_winners_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_winners_card_fallback_title": { + "name": "version_home_winners_card_fallback_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_home_winners_hover_label": { + "name": "version_home_winners_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "version_home_testimonials_eyebrow": { + "name": "version_home_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "version_home_testimonials_heading": { + "name": "version_home_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "version_home_testimonials_desktop_heading": { + "name": "version_home_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "version_home_testimonials_year_prefix": { + "name": "version_home_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_home_testimonials_previous_label": { + "name": "version_home_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "version_home_testimonials_next_label": { + "name": "version_home_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "version_home_testimonials_slide_label_prefix": { + "name": "version_home_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "version_home_benefits_eyebrow": { + "name": "version_home_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr als nur ein Preis'" + }, + "version_home_benefits_heading": { + "name": "version_home_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM SICH DIE\nTEILNAHME LOHNT.'" + }, + "version_home_benefits_image_id": { + "name": "version_home_benefits_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_benefits_image_alt": { + "name": "version_home_benefits_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Netzwerk'" + }, + "version_home_benefits_image_label": { + "name": "version_home_benefits_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala-Netzwerk'" + }, + "version_home_application_eyebrow": { + "name": "version_home_application_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Chance ergreifen'" + }, + "version_home_application_heading": { + "name": "version_home_application_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN\nAUCH SIE\nGESCHICHTE.'" + }, + "version_home_application_body": { + "name": "version_home_application_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands – vollständig kostenfrei.'" + }, + "version_home_application_award_image_id": { + "name": "version_home_application_award_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_application_award_image_alt": { + "name": "version_home_application_award_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bayerischer Mittelstandspreis'" + }, + "version_home_application_award_caption": { + "name": "version_home_application_award_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_home_application_form_eyebrow": { + "name": "version_home_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung 2026'" + }, + "version_home_application_form_title": { + "name": "version_home_application_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos bewerben'" + }, + "version_home_application_footnote": { + "name": "version_home_application_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos und unverbindlich –'" + }, + "version_home_application_footnote_strong": { + "name": "version_home_application_footnote_strong", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'keine Teilnahmegebühr'" + }, + "version_home_form_step_complete_label": { + "name": "version_home_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_home_form_back_label": { + "name": "version_home_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_home_form_next_label": { + "name": "version_home_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_home_form_submit_label": { + "name": "version_home_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "version_home_form_yes_label": { + "name": "version_home_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "version_home_form_no_label": { + "name": "version_home_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "version_home_form_required_suffix": { + "name": "version_home_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "version_home_form_validation_choose": { + "name": "version_home_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "version_home_form_validation_required": { + "name": "version_home_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_home_form_validation_invalid_email": { + "name": "version_home_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_home_form_type_step_eyebrow": { + "name": "version_home_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "version_home_form_type_step_heading": { + "name": "version_home_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "version_home_form_type_step_self_title": { + "name": "version_home_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "version_home_form_type_step_self_desc": { + "name": "version_home_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "version_home_form_type_step_nomination_title": { + "name": "version_home_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "version_home_form_type_step_nomination_desc": { + "name": "version_home_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "version_home_form_eligibility_allowed_employee_values": { + "name": "version_home_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "version_home_form_eligibility_required_bayern_value": { + "name": "version_home_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "version_home_form_eligibility_eyebrow": { + "name": "version_home_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_home_form_eligibility_heading": { + "name": "version_home_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "version_home_form_eligibility_employees_label": { + "name": "version_home_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "version_home_form_eligibility_bayern_label": { + "name": "version_home_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "version_home_form_eligibility_owner_label": { + "name": "version_home_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "version_home_form_eligibility_ineligible_heading": { + "name": "version_home_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "version_home_form_eligibility_ineligible_body": { + "name": "version_home_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "version_home_form_eligibility_ineligible_contact_prefix": { + "name": "version_home_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "version_home_form_eligibility_ineligible_contact_email": { + "name": "version_home_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "version_home_form_self_contact_eyebrow": { + "name": "version_home_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_home_form_self_contact_heading": { + "name": "version_home_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "version_home_form_self_contact_company_label": { + "name": "version_home_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_home_form_self_contact_company_placeholder": { + "name": "version_home_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_home_form_self_contact_name_label": { + "name": "version_home_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_home_form_self_contact_name_placeholder": { + "name": "version_home_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_home_form_self_contact_email_label": { + "name": "version_home_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_home_form_self_contact_email_placeholder": { + "name": "version_home_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_home_form_self_contact_phone_label": { + "name": "version_home_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "version_home_form_self_contact_phone_placeholder": { + "name": "version_home_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "version_home_form_self_contact_footnote": { + "name": "version_home_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "version_home_form_self_summary_eyebrow": { + "name": "version_home_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_home_form_self_summary_heading": { + "name": "version_home_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "version_home_form_self_summary_company_label": { + "name": "version_home_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_home_form_self_summary_employees_label": { + "name": "version_home_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_home_form_self_summary_location_label": { + "name": "version_home_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_home_form_self_summary_location_prefix": { + "name": "version_home_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "version_home_form_self_summary_contact_label": { + "name": "version_home_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_home_form_nomination_company_eyebrow": { + "name": "version_home_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "version_home_form_nomination_company_heading": { + "name": "version_home_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "version_home_form_nomination_company_company_label": { + "name": "version_home_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_home_form_nomination_company_company_placeholder": { + "name": "version_home_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_home_form_nomination_company_industry_label": { + "name": "version_home_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_home_form_nomination_company_industry_placeholder": { + "name": "version_home_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "version_home_form_nomination_company_location_label": { + "name": "version_home_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "version_home_form_nomination_company_location_placeholder": { + "name": "version_home_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "version_home_form_nomination_contact_eyebrow": { + "name": "version_home_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "version_home_form_nomination_contact_heading": { + "name": "version_home_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "version_home_form_nomination_contact_name_label": { + "name": "version_home_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_home_form_nomination_contact_name_placeholder": { + "name": "version_home_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_home_form_nomination_contact_email_label": { + "name": "version_home_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "version_home_form_nomination_contact_email_placeholder": { + "name": "version_home_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_home_form_nomination_contact_relationship_label": { + "name": "version_home_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "version_home_form_nomination_contact_relationship_placeholder": { + "name": "version_home_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "version_home_form_nomination_contact_footnote": { + "name": "version_home_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "version_home_form_nomination_summary_eyebrow": { + "name": "version_home_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_home_form_nomination_summary_heading": { + "name": "version_home_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "version_home_form_nomination_summary_company_label": { + "name": "version_home_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_home_form_nomination_summary_industry_label": { + "name": "version_home_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_home_form_nomination_summary_location_label": { + "name": "version_home_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_home_form_nomination_summary_nominated_by_label": { + "name": "version_home_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "version_home_form_nomination_summary_empty_value": { + "name": "version_home_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "version_home_form_success_self_heading": { + "name": "version_home_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_home_form_success_nomination_heading": { + "name": "version_home_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "version_home_form_success_self_prefix": { + "name": "version_home_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_home_form_success_self_middle": { + "name": "version_home_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "version_home_form_success_self_suffix": { + "name": "version_home_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "version_home_form_success_nomination_prefix": { + "name": "version_home_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_home_form_success_nomination_middle": { + "name": "version_home_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "version_home_form_success_nomination_suffix": { + "name": "version_home_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "version_home_video_modal_video_id": { + "name": "version_home_video_modal_video_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_video_modal_title": { + "name": "version_home_video_modal_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Video-Player Platzhalter'" + }, + "version_home_video_modal_description": { + "name": "version_home_video_modal_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hier würde das Image-Video des BMP geladen werden.'" + }, + "version_home_video_modal_close_label": { + "name": "version_home_video_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "version_contact_hero_background_image_id": { + "name": "version_contact_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_contact_hero_image_alt": { + "name": "version_contact_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "version_contact_hero_eyebrow": { + "name": "version_contact_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dialog & Service'" + }, + "version_contact_hero_heading": { + "name": "version_contact_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir sind\nfür Sie da.'" + }, + "version_contact_hero_description": { + "name": "version_contact_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen zur Bewerbung, zur Gala oder zu Partnermöglichkeiten – unser Team begleitet Sie persönlich.'" + }, + "version_contact_info_eyebrow": { + "name": "version_contact_info_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktkontakt'" + }, + "version_contact_info_heading": { + "name": "version_contact_info_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt­möglichkeiten'" + }, + "version_contact_info_next_award_label": { + "name": "version_contact_info_next_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächste Preisverleihung:'" + }, + "version_contact_info_next_award_date": { + "name": "version_contact_info_next_award_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'22. Oktober 2026'" + }, + "version_contact_info_form_image_id": { + "name": "version_contact_info_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_contact_info_form_image_alt": { + "name": "version_contact_info_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala 2025'" + }, + "version_contact_info_form_image_label": { + "name": "version_contact_info_form_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala 2025 München'" + }, + "version_contact_info_form_eyebrow": { + "name": "version_contact_info_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontaktformular'" + }, + "version_contact_info_form_title": { + "name": "version_contact_info_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie uns'" + }, + "version_contact_info_form_copy_prompts_subject": { + "name": "version_contact_info_form_copy_prompts_subject", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Womit können wir Ihnen helfen?'" + }, + "version_contact_info_form_copy_prompts_contact": { + "name": "version_contact_info_form_copy_prompts_contact", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie dürfen wir Sie kontaktieren?'" + }, + "version_contact_info_form_copy_prompts_message": { + "name": "version_contact_info_form_copy_prompts_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was möchten Sie uns mitteilen?'" + }, + "version_contact_info_form_copy_fields_name_label": { + "name": "version_contact_info_form_copy_fields_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Name'" + }, + "version_contact_info_form_copy_fields_name_placeholder": { + "name": "version_contact_info_form_copy_fields_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_contact_info_form_copy_fields_email_label": { + "name": "version_contact_info_form_copy_fields_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_contact_info_form_copy_fields_email_placeholder": { + "name": "version_contact_info_form_copy_fields_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_contact_info_form_copy_fields_message_label": { + "name": "version_contact_info_form_copy_fields_message_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht'" + }, + "version_contact_info_form_copy_fields_message_placeholder": { + "name": "version_contact_info_form_copy_fields_message_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie Ihre Nachricht…'" + }, + "version_contact_info_form_copy_validation_name_required": { + "name": "version_contact_info_form_copy_validation_name_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Namen angeben'" + }, + "version_contact_info_form_copy_validation_email_required": { + "name": "version_contact_info_form_copy_validation_email_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte E-Mail angeben'" + }, + "version_contact_info_form_copy_validation_email_invalid": { + "name": "version_contact_info_form_copy_validation_email_invalid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_contact_info_form_copy_validation_message_required": { + "name": "version_contact_info_form_copy_validation_message_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Nachricht verfassen.'" + }, + "version_contact_info_form_copy_navigation_back": { + "name": "version_contact_info_form_copy_navigation_back", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_contact_info_form_copy_navigation_next": { + "name": "version_contact_info_form_copy_navigation_next", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_contact_info_form_copy_navigation_submit": { + "name": "version_contact_info_form_copy_navigation_submit", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage senden'" + }, + "version_contact_info_form_copy_success_heading": { + "name": "version_contact_info_form_copy_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht gesendet'" + }, + "version_contact_info_form_copy_success_prefix": { + "name": "version_contact_info_form_copy_success_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Danke,'" + }, + "version_contact_info_form_copy_success_suffix_before_email": { + "name": "version_contact_info_form_copy_success_suffix_before_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns zeitnah bei'" + }, + "version_contact_deadlines_watermark": { + "name": "version_contact_deadlines_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'2026'" + }, + "version_contact_deadlines_eyebrow": { + "name": "version_contact_deadlines_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fahrplan 2026'" + }, + "version_contact_faq_eyebrow": { + "name": "version_contact_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Antworten'" + }, + "version_contact_faq_heading": { + "name": "version_contact_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige\nFragen'" + }, + "version_participation_hero_background_image_id": { + "name": "version_participation_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_participation_hero_image_alt": { + "name": "version_participation_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Teilnahme BMP'" + }, + "version_participation_hero_eyebrow": { + "name": "version_participation_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026'" + }, + "version_participation_hero_heading": { + "name": "version_participation_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'GESTALTEN SIE\nBAYERNS ZUKUNFT.'" + }, + "version_participation_hero_description": { + "name": "version_participation_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alles, was Sie für Ihre erfolgreiche Bewerbung zum Bayerischen Mittelstandspreis wissen müssen.'" + }, + "version_participation_process_eyebrow": { + "name": "version_participation_process_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt für Schritt'" + }, + "version_participation_process_heading": { + "name": "version_participation_process_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR WEG ZUM\nPREIS.'" + }, + "version_participation_process_description": { + "name": "version_participation_process_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Einreichung bis zur Gala – vier klar definierte Schritte auf dem Weg zur höchsten Auszeichnung des bayerischen Mittelstands.'" + }, + "version_participation_process_step_prefix": { + "name": "version_participation_process_step_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt'" + }, + "version_participation_process_scroll_hint": { + "name": "version_participation_process_scroll_hint", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Scrollen zum Erkunden'" + }, + "version_participation_process_progress_label": { + "name": "version_participation_process_progress_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'01 / 04'" + }, + "version_participation_eligibility_eyebrow": { + "name": "version_participation_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berechtigung'" + }, + "version_participation_eligibility_heading": { + "name": "version_participation_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER KANN\nTEILNEHMEN?'" + }, + "version_participation_eligibility_description": { + "name": "version_participation_eligibility_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vier klar definierte Kriterien: Erfüllen Sie alle, bewerben Sie sich kostenlos und ohne bürokratischen Aufwand.'" + }, + "version_participation_eligibility_primary_cta_label": { + "name": "version_participation_eligibility_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_participation_eligibility_primary_cta_url": { + "name": "version_participation_eligibility_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_eligibility_secondary_cta_label": { + "name": "version_participation_eligibility_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "version_participation_eligibility_secondary_cta_url": { + "name": "version_participation_eligibility_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_participation_eligibility_nudge_text": { + "name": "version_participation_eligibility_nudge_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle 4 Punkte erfüllt? Dann jetzt kostenlos bewerben.'" + }, + "version_participation_eligibility_nudge_cta_label": { + "name": "version_participation_eligibility_nudge_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "version_participation_eligibility_nudge_cta_url": { + "name": "version_participation_eligibility_nudge_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_application_ways_eyebrow": { + "name": "version_participation_application_ways_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "version_participation_application_ways_heading": { + "name": "version_participation_application_ways_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'HIER KÖNNEN SIE SICH\nBEWERBEN ODER EIN\nUNTERNEHMEN VORSCHLAGEN.'" + }, + "version_participation_application_ways_description": { + "name": "version_participation_application_ways_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Als Unternehmen haben Sie zwei Möglichkeiten: Sie werden von einem unterstützenden Partner oder einer Institution vorgeschlagen, oder Sie ergreifen selbst die Initiative und füllen unsere Anmeldung aus. Die Teilnahme ist in allen Fällen kostenfrei.'" + }, + "version_participation_application_ways_recommended_label": { + "name": "version_participation_application_ways_recommended_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Empfohlen'" + }, + "version_participation_application_ways_fallback_cta_label": { + "name": "version_participation_application_ways_fallback_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "version_participation_application_ways_fallback_cta_url": { + "name": "version_participation_application_ways_fallback_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_dates_banner_heading": { + "name": "version_participation_dates_banner_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wichtige Termine 2026'" + }, + "version_participation_dates_banner_description": { + "name": "version_participation_dates_banner_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Planen Sie Ihre Teilnahme rechtzeitig.'" + }, + "version_participation_awards_grid_eyebrow": { + "name": "version_participation_awards_grid_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnungen 2026'" + }, + "version_participation_awards_grid_heading": { + "name": "version_participation_awards_grid_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.'" + }, + "version_participation_awards_grid_description": { + "name": "version_participation_awards_grid_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.'" + }, + "version_participation_application_form_image_id": { + "name": "version_participation_application_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_participation_application_form_image_alt": { + "name": "version_participation_application_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_participation_application_form_image_caption": { + "name": "version_participation_application_form_image_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_participation_application_form_eyebrow": { + "name": "version_participation_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung'" + }, + "version_participation_application_form_heading": { + "name": "version_participation_application_form_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEWERBEN ODER\nVORSCHLAGEN.'" + }, + "version_participation_application_form_description": { + "name": "version_participation_application_form_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie können sich selbst bewerben oder ein herausragendes Unternehmen vorschlagen. Firmenverbunde können sich ebenfalls bewerben. Die Teilnahme ist vollständig kostenfrei.'" + }, + "version_participation_application_form_form_eyebrow": { + "name": "version_participation_application_form_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "version_participation_application_form_upload_cta_label": { + "name": "version_participation_application_form_upload_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF hochladen'" + }, + "version_participation_application_form_upload_cta_url": { + "name": "version_participation_application_form_upload_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "version_participation_application_form_upload_prompt": { + "name": "version_participation_application_form_upload_prompt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie haben Ihre Unterlagen bereits als PDF vorbereitet? Laden Sie sie direkt hoch, statt das Formular auszufüllen.'" + }, + "version_participation_application_form_upload_footer_cta_label": { + "name": "version_participation_application_form_upload_footer_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen →'" + }, + "version_participation_application_form_upload_footer_cta_url": { + "name": "version_participation_application_form_upload_footer_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "version_participation_form_step_complete_label": { + "name": "version_participation_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_participation_form_back_label": { + "name": "version_participation_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_participation_form_next_label": { + "name": "version_participation_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_participation_form_submit_label": { + "name": "version_participation_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "version_participation_form_yes_label": { + "name": "version_participation_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "version_participation_form_no_label": { + "name": "version_participation_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "version_participation_form_required_suffix": { + "name": "version_participation_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "version_participation_form_validation_choose": { + "name": "version_participation_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "version_participation_form_validation_required": { + "name": "version_participation_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_participation_form_validation_invalid_email": { + "name": "version_participation_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_participation_form_type_step_eyebrow": { + "name": "version_participation_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "version_participation_form_type_step_heading": { + "name": "version_participation_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "version_participation_form_type_step_self_title": { + "name": "version_participation_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "version_participation_form_type_step_self_desc": { + "name": "version_participation_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "version_participation_form_type_step_nomination_title": { + "name": "version_participation_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "version_participation_form_type_step_nomination_desc": { + "name": "version_participation_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "version_participation_form_eligibility_allowed_employee_values": { + "name": "version_participation_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "version_participation_form_eligibility_required_bayern_value": { + "name": "version_participation_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "version_participation_form_eligibility_eyebrow": { + "name": "version_participation_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_participation_form_eligibility_heading": { + "name": "version_participation_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "version_participation_form_eligibility_employees_label": { + "name": "version_participation_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "version_participation_form_eligibility_bayern_label": { + "name": "version_participation_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "version_participation_form_eligibility_owner_label": { + "name": "version_participation_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "version_participation_form_eligibility_ineligible_heading": { + "name": "version_participation_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "version_participation_form_eligibility_ineligible_body": { + "name": "version_participation_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "version_participation_form_eligibility_ineligible_contact_prefix": { + "name": "version_participation_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "version_participation_form_eligibility_ineligible_contact_email": { + "name": "version_participation_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "version_participation_form_self_contact_eyebrow": { + "name": "version_participation_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_participation_form_self_contact_heading": { + "name": "version_participation_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "version_participation_form_self_contact_company_label": { + "name": "version_participation_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_participation_form_self_contact_company_placeholder": { + "name": "version_participation_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_participation_form_self_contact_name_label": { + "name": "version_participation_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_participation_form_self_contact_name_placeholder": { + "name": "version_participation_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_participation_form_self_contact_email_label": { + "name": "version_participation_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_participation_form_self_contact_email_placeholder": { + "name": "version_participation_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_participation_form_self_contact_phone_label": { + "name": "version_participation_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "version_participation_form_self_contact_phone_placeholder": { + "name": "version_participation_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "version_participation_form_self_contact_footnote": { + "name": "version_participation_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "version_participation_form_self_summary_eyebrow": { + "name": "version_participation_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_participation_form_self_summary_heading": { + "name": "version_participation_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "version_participation_form_self_summary_company_label": { + "name": "version_participation_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_participation_form_self_summary_employees_label": { + "name": "version_participation_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_participation_form_self_summary_location_label": { + "name": "version_participation_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_participation_form_self_summary_location_prefix": { + "name": "version_participation_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "version_participation_form_self_summary_contact_label": { + "name": "version_participation_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_participation_form_nomination_company_eyebrow": { + "name": "version_participation_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "version_participation_form_nomination_company_heading": { + "name": "version_participation_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "version_participation_form_nomination_company_company_label": { + "name": "version_participation_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_participation_form_nomination_company_company_placeholder": { + "name": "version_participation_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_participation_form_nomination_company_industry_label": { + "name": "version_participation_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_participation_form_nomination_company_industry_placeholder": { + "name": "version_participation_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "version_participation_form_nomination_company_location_label": { + "name": "version_participation_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "version_participation_form_nomination_company_location_placeholder": { + "name": "version_participation_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "version_participation_form_nomination_contact_eyebrow": { + "name": "version_participation_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "version_participation_form_nomination_contact_heading": { + "name": "version_participation_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "version_participation_form_nomination_contact_name_label": { + "name": "version_participation_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_participation_form_nomination_contact_name_placeholder": { + "name": "version_participation_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_participation_form_nomination_contact_email_label": { + "name": "version_participation_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "version_participation_form_nomination_contact_email_placeholder": { + "name": "version_participation_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_participation_form_nomination_contact_relationship_label": { + "name": "version_participation_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "version_participation_form_nomination_contact_relationship_placeholder": { + "name": "version_participation_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "version_participation_form_nomination_contact_footnote": { + "name": "version_participation_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "version_participation_form_nomination_summary_eyebrow": { + "name": "version_participation_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_participation_form_nomination_summary_heading": { + "name": "version_participation_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "version_participation_form_nomination_summary_company_label": { + "name": "version_participation_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_participation_form_nomination_summary_industry_label": { + "name": "version_participation_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_participation_form_nomination_summary_location_label": { + "name": "version_participation_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_participation_form_nomination_summary_nominated_by_label": { + "name": "version_participation_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "version_participation_form_nomination_summary_empty_value": { + "name": "version_participation_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "version_participation_form_success_self_heading": { + "name": "version_participation_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_participation_form_success_nomination_heading": { + "name": "version_participation_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "version_participation_form_success_self_prefix": { + "name": "version_participation_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_participation_form_success_self_middle": { + "name": "version_participation_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "version_participation_form_success_self_suffix": { + "name": "version_participation_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "version_participation_form_success_nomination_prefix": { + "name": "version_participation_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_participation_form_success_nomination_middle": { + "name": "version_participation_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "version_participation_form_success_nomination_suffix": { + "name": "version_participation_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "version_about_hero_background_image_id": { + "name": "version_about_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_hero_image_alt": { + "name": "version_about_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "version_about_hero_eyebrow": { + "name": "version_about_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "version_about_hero_heading": { + "name": "version_about_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WERTE, DIE\nBAYERN BEWEGEN'" + }, + "version_about_hero_highlight": { + "name": "version_about_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERN BEWEGEN'" + }, + "version_about_hero_description": { + "name": "version_about_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Seit 2005 ehrt der BMP herausragende Leistungen im bayerischen Mittelstand. Entdecken Sie die Geschichte, die Vision und die Menschen dahinter.'" + }, + "version_about_hero_primary_cta_label": { + "name": "version_about_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_about_hero_primary_cta_url": { + "name": "version_about_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_about_hero_secondary_cta_label": { + "name": "version_about_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_about_hero_secondary_cta_url": { + "name": "version_about_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_about_prize_image_id": { + "name": "version_about_prize_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_prize_image_alt": { + "name": "version_about_prize_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Preisverleihung'" + }, + "version_about_prize_eyebrow": { + "name": "version_about_prize_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was ist der Preis?'" + }, + "version_about_prize_heading": { + "name": "version_about_prize_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DER BAYERISCHE\nMITTELSTANDSPREIS'" + }, + "version_about_prize_image_label": { + "name": "version_about_prize_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Preisverleihung · München'" + }, + "version_about_mittelstand_image_id": { + "name": "version_about_mittelstand_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_mittelstand_image_alt": { + "name": "version_about_mittelstand_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstand'" + }, + "version_about_mittelstand_eyebrow": { + "name": "version_about_mittelstand_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Relevanz & Zielsetzung'" + }, + "version_about_mittelstand_heading": { + "name": "version_about_mittelstand_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEDEUTUNG FÜR\nDEN MITTELSTAND'" + }, + "version_about_highlights_fallback_image_id": { + "name": "version_about_highlights_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_highlights_eyebrow": { + "name": "version_about_highlights_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger-Highlights'" + }, + "version_about_highlights_heading": { + "name": "version_about_highlights_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSGEZEICHNETE 2025'" + }, + "version_about_highlights_cta_label": { + "name": "version_about_highlights_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_about_highlights_cta_url": { + "name": "version_about_highlights_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_about_highlights_hover_label": { + "name": "version_about_highlights_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "version_about_highlights_fallback_winner_name": { + "name": "version_about_highlights_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_highlights_fallback_winner_category": { + "name": "version_about_highlights_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_highlights_fallback_winner_award_type": { + "name": "version_about_highlights_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_about_highlights_year": { + "name": "version_about_highlights_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 2025 + }, + "version_about_testimonials_eyebrow": { + "name": "version_about_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "version_about_testimonials_heading": { + "name": "version_about_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "version_about_testimonials_desktop_heading": { + "name": "version_about_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "version_about_testimonials_year_prefix": { + "name": "version_about_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_testimonials_previous_label": { + "name": "version_about_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "version_about_testimonials_next_label": { + "name": "version_about_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "version_about_testimonials_slide_label_prefix": { + "name": "version_about_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "version_about_history_eyebrow": { + "name": "version_about_history_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geschichte & Meilensteine'" + }, + "version_about_history_heading": { + "name": "version_about_history_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20 JAHRE\nMITTELSTANDSEXZELLENZ'" + }, + "version_about_history_highlight": { + "name": "version_about_history_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTANDS'" + }, + "version_about_history_watermark": { + "name": "version_about_history_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20'" + }, + "version_about_goals_eyebrow": { + "name": "version_about_goals_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zielsetzung'" + }, + "version_about_goals_heading": { + "name": "version_about_goals_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WOFÜR WIR\nSTEHEN'" + }, + "version_about_values_eyebrow": { + "name": "version_about_values_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorteile & Werte'" + }, + "version_about_values_heading": { + "name": "version_about_values_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM DER\nBMP ZÄHLT'" + }, + "version_about_values_description": { + "name": "version_about_values_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Drei Dimensionen, die den Unterschied machen: für Ihr Unternehmen, Ihre Mitarbeitenden und Ihren Marktauftritt.'" + }, + "version_about_cta_eyebrow": { + "name": "version_about_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Starten Sie Ihre Reise'" + }, + "version_about_cta_heading": { + "name": "version_about_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN AUCH SIE GESCHICHTE'" + }, + "version_about_cta_description": { + "name": "version_about_cta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands. Die Teilnahmegebühr beträgt 0 EUR und die Teilnahme lohnt sich in jeder Phase.'" + }, + "version_about_cta_primary_cta_label": { + "name": "version_about_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_about_cta_primary_cta_url": { + "name": "version_about_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_about_cta_secondary_prefix": { + "name": "version_about_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "version_about_cta_secondary_cta_label": { + "name": "version_about_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_about_cta_secondary_cta_url": { + "name": "version_about_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_impressum_hero_back_label": { + "name": "version_impressum_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_impressum_hero_eyebrow": { + "name": "version_impressum_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "version_impressum_hero_heading": { + "name": "version_impressum_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Impressum'" + }, + "version_impressum_hero_description_html": { + "name": "version_impressum_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Angaben gemäß §5 TMG · Zur Datenschutzerklärung →'" + }, + "version_impressum_navigation_toc_title": { + "name": "version_impressum_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "version_impressum_navigation_side_link_label": { + "name": "version_impressum_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutzerklärung →'" + }, + "version_impressum_navigation_side_link_url": { + "name": "version_impressum_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/datenschutz'" + }, + "version_datenschutz_hero_back_label": { + "name": "version_datenschutz_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_datenschutz_hero_eyebrow": { + "name": "version_datenschutz_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "version_datenschutz_hero_heading": { + "name": "version_datenschutz_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutz­erklärung'" + }, + "version_datenschutz_hero_description_html": { + "name": "version_datenschutz_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zuletzt aktualisiert: April 2026 · Zum Impressum →'" + }, + "version_datenschutz_navigation_toc_title": { + "name": "version_datenschutz_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "version_datenschutz_navigation_side_link_label": { + "name": "version_datenschutz_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Impressum →'" + }, + "version_datenschutz_navigation_side_link_url": { + "name": "version_datenschutz_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/impressum'" + }, + "version_preistraeger_index_hero_image_id": { + "name": "version_preistraeger_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_preistraeger_index_hero_image_url": { + "name": "version_preistraeger_index_hero_image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=2000'" + }, + "version_preistraeger_index_hero_image_alt": { + "name": "version_preistraeger_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung'" + }, + "version_preistraeger_index_breadcrumb_label": { + "name": "version_preistraeger_index_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_preistraeger_index_count_label": { + "name": "version_preistraeger_index_count_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_preistraeger_index_empty_message": { + "name": "version_preistraeger_index_empty_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Preisträger für diese Auswahl.'" + }, + "version_preistraeger_index_card_fallback_image_id": { + "name": "version_preistraeger_index_card_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_preistraeger_index_card_hover_label": { + "name": "version_preistraeger_index_card_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr erfahren'" + }, + "version_preistraeger_index_card_fallback_winner_name": { + "name": "version_preistraeger_index_card_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_preistraeger_index_card_fallback_winner_category": { + "name": "version_preistraeger_index_card_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_preistraeger_index_card_fallback_winner_award_type": { + "name": "version_preistraeger_index_card_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_preistraeger_index_card_fallback_winner_location": { + "name": "version_preistraeger_index_card_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_preistraeger_index_card_fallback_winner_industry": { + "name": "version_preistraeger_index_card_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "version_preistraeger_index_cta_text": { + "name": "version_preistraeger_index_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie der nächste Preisträger.'" + }, + "version_preistraeger_index_cta_primary_cta_label": { + "name": "version_preistraeger_index_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_preistraeger_index_cta_primary_cta_url": { + "name": "version_preistraeger_index_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_preistraeger_index_cta_secondary_prefix": { + "name": "version_preistraeger_index_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Arbeit unterstützen:'" + }, + "version_preistraeger_index_cta_secondary_cta_label": { + "name": "version_preistraeger_index_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_preistraeger_index_cta_secondary_cta_url": { + "name": "version_preistraeger_index_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_press_index_hero_image_id": { + "name": "version_press_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_hero_image_alt": { + "name": "version_press_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse BMP'" + }, + "version_press_index_hero_eyebrow": { + "name": "version_press_index_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse & Newsroom'" + }, + "version_press_index_hero_heading": { + "name": "version_press_index_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS &\nBERICHTERSTATTUNG.'" + }, + "version_press_index_hero_description": { + "name": "version_press_index_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Termine, Pressemitteilungen und Medienmaterial rund um den Bayerischen Mittelstandspreis.'" + }, + "version_press_index_events_eyebrow": { + "name": "version_press_index_events_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termine 2026'" + }, + "version_press_index_events_heading": { + "name": "version_press_index_events_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS RUND UM DEN PREIS.'" + }, + "version_press_index_events_description": { + "name": "version_press_index_events_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Jurysitzung bis zur festlichen Gala – alle Veranstaltungen auf einen Blick.'" + }, + "version_press_index_events_detail_label": { + "name": "version_press_index_events_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "version_press_index_events_default_status_label": { + "name": "version_press_index_events_default_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geplant'" + }, + "version_press_index_events_open_status_label": { + "name": "version_press_index_events_open_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anmeldung offen'" + }, + "version_press_index_events_missing_title_label": { + "name": "version_press_index_events_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_press_index_events_missing_date_label": { + "name": "version_press_index_events_missing_date_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "version_press_index_events_missing_location_label": { + "name": "version_press_index_events_missing_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_press_index_events_missing_category_label": { + "name": "version_press_index_events_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_press_index_events_collection_fallback_image_id": { + "name": "version_press_index_events_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_news_eyebrow": { + "name": "version_press_index_news_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "version_press_index_news_heading": { + "name": "version_press_index_news_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'NACHRICHTEN & EINBLICKE.'" + }, + "version_press_index_news_description": { + "name": "version_press_index_news_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berichte, Hintergründe und Einblicke rund um den bayerischen Mittelstand und den BMP.'" + }, + "version_press_index_news_read_more_label": { + "name": "version_press_index_news_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "version_press_index_news_missing_title_label": { + "name": "version_press_index_news_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_press_index_news_missing_category_label": { + "name": "version_press_index_news_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_press_index_news_collection_fallback_image_id": { + "name": "version_press_index_news_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_downloads_eyebrow": { + "name": "version_press_index_downloads_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt & Material'" + }, + "version_press_index_downloads_heading": { + "name": "version_press_index_downloads_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PRESSE-MATERIAL & KONTAKT.'" + }, + "version_press_index_downloads_description": { + "name": "version_press_index_downloads_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie unser offizielles Material herunter oder kontaktieren Sie direkt unser Presseteam für individuelle Anfragen.'" + }, + "version_press_index_downloads_kit_label": { + "name": "version_press_index_downloads_kit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Download Presse-Kit'" + }, + "version_press_index_downloads_kit_meta": { + "name": "version_press_index_downloads_kit_meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip – 1,5 MB'" + }, + "version_press_index_downloads_kit_file_id": { + "name": "version_press_index_downloads_kit_file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_downloads_kit_url": { + "name": "version_press_index_downloads_kit_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/Print_BMP.zip'" + }, + "version_press_index_downloads_kit_download_name": { + "name": "version_press_index_downloads_kit_download_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip'" + }, + "version_press_index_downloads_contact_eyebrow": { + "name": "version_press_index_downloads_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt'" + }, + "version_press_index_downloads_contact_name": { + "name": "version_press_index_downloads_contact_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Tanja Meier'" + }, + "version_press_index_downloads_contact_lines": { + "name": "version_press_index_downloads_contact_lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'presse@bmp-bayern.de\n+49 89 123 456 99'" + }, + "version_press_index_accreditation_eyebrow": { + "name": "version_press_index_accreditation_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung'" + }, + "version_press_index_accreditation_heading": { + "name": "version_press_index_accreditation_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AKKREDITIERUNG ANFRAGEN.'" + }, + "version_press_index_accreditation_description": { + "name": "version_press_index_accreditation_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Melden Sie sich für unsere Presse-Verteiler an oder fordern Sie eine Akkreditierung für die Gala-Verleihung an.'" + }, + "version_press_index_accreditation_medium_label": { + "name": "version_press_index_accreditation_medium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Medium / Redaktion *'" + }, + "version_press_index_accreditation_name_label": { + "name": "version_press_index_accreditation_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name *'" + }, + "version_press_index_accreditation_email_label": { + "name": "version_press_index_accreditation_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail-Adresse *'" + }, + "version_press_index_accreditation_submit_label": { + "name": "version_press_index_accreditation_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung anfragen'" + }, + "version_press_index_accreditation_success_heading": { + "name": "version_press_index_accreditation_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_press_index_accreditation_success_message": { + "name": "version_press_index_accreditation_success_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank für Ihre Akkreditierungsanfrage. Unser Presseteam meldet sich zeitnah bei Ihnen.'" + }, + "version_form_upload_hero_eyebrow": { + "name": "version_form_upload_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026 – Bewerbungsportal'" + }, + "version_form_upload_hero_heading": { + "name": "version_form_upload_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERLAGEN\nEINREICHEN'" + }, + "version_form_upload_hero_description": { + "name": "version_form_upload_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie Ihre Bewerbungsunterlagen sicher hoch. Alle Einreichungen werden vertraulich behandelt und direkt an die Jury weitergeleitet.'" + }, + "version_form_upload_breadcrumb_label": { + "name": "version_form_upload_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen'" + }, + "version_form_upload_requirements_eyebrow": { + "name": "version_form_upload_requirements_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was wird benötigt?'" + }, + "version_form_upload_requirements_heading": { + "name": "version_form_upload_requirements_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ANFORDERUNGEN & FRISTEN'" + }, + "version_form_upload_upload_eyebrow": { + "name": "version_form_upload_upload_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung'" + }, + "version_form_upload_upload_heading": { + "name": "version_form_upload_upload_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DATEIEN HOCHLADEN'" + }, + "version_form_upload_upload_drop_title": { + "name": "version_form_upload_upload_drop_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dateien hierher ziehen'" + }, + "version_form_upload_upload_drop_description": { + "name": "version_form_upload_upload_drop_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oder klicken zum Auswählen'" + }, + "version_form_upload_upload_accepted_formats": { + "name": "version_form_upload_upload_accepted_formats", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF\nDOCX\nXLSX\nPPT'" + }, + "version_form_upload_upload_file_remove_label": { + "name": "version_form_upload_upload_file_remove_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei entfernen'" + }, + "version_form_upload_upload_note_title": { + "name": "version_form_upload_upload_note_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis'" + }, + "version_form_upload_upload_note": { + "name": "version_form_upload_upload_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stellen Sie sicher, dass alle Pflichtdokumente vollständig sind, bevor Sie einreichen. Unvollständige Bewerbungen können nicht berücksichtigt werden.'" + }, + "version_form_upload_upload_selected_submit_prefix": { + "name": "version_form_upload_upload_selected_submit_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei'" + }, + "version_form_upload_upload_selected_submit_plural_suffix": { + "name": "version_form_upload_upload_selected_submit_plural_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'en'" + }, + "version_form_upload_upload_selected_submit_action": { + "name": "version_form_upload_upload_selected_submit_action", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'einreichen'" + }, + "version_form_upload_upload_empty_submit_label": { + "name": "version_form_upload_upload_empty_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Dateien ausgewählt'" + }, + "version_form_upload_upload_privacy_note": { + "name": "version_form_upload_upload_privacy_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mit der Einreichung stimmen Sie der Verarbeitung Ihrer Daten gemäß unserer Datenschutzerklärung zu.'" + }, + "version_form_upload_success_heading": { + "name": "version_form_upload_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung erfolgreich'" + }, + "version_form_upload_success_description": { + "name": "version_form_upload_success_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Unterlagen wurden übermittelt. Sie erhalten eine Bestätigung per E-Mail. Die Jury meldet sich bis August 2026.'" + }, + "version_form_upload_success_link_label": { + "name": "version_form_upload_success_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "version_form_upload_success_link_url": { + "name": "version_form_upload_success_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_form_upload_cta_eyebrow": { + "name": "version_form_upload_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Noch Fragen zur Einreichung?'" + }, + "version_form_upload_cta_contact_label": { + "name": "version_form_upload_cta_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "version_form_upload_cta_contact_url": { + "name": "version_form_upload_cta_contact_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "version_form_upload_cta_button_label": { + "name": "version_form_upload_cta_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "version_form_upload_cta_button_url": { + "name": "version_form_upload_cta_button_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_netzwerk_hero_image_id": { + "name": "version_netzwerk_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_netzwerk_hero_image_alt": { + "name": "version_netzwerk_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Netzwerk Preisverleihung'" + }, + "version_netzwerk_hero_eyebrow": { + "name": "version_netzwerk_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury & Partner'" + }, + "version_netzwerk_hero_heading": { + "name": "version_netzwerk_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS NETZWERK\nHINTER DEM AWARD.'" + }, + "version_netzwerk_hero_highlight": { + "name": "version_netzwerk_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AWARD.'" + }, + "version_netzwerk_hero_description": { + "name": "version_netzwerk_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis wird getragen von einem starken Netzwerk aus Schirmherrschaft, unabhängiger Fach-Jury und langjährigen Partnern aus Wirtschaft und Gesellschaft.'" + }, + "version_netzwerk_patronage_eyebrow": { + "name": "version_netzwerk_patronage_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Schirmherrschaft'" + }, + "version_netzwerk_patronage_heading": { + "name": "version_netzwerk_patronage_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin und Schirmherr'" + }, + "version_netzwerk_patronage_description": { + "name": "version_netzwerk_patronage_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'des Bayerischen Mittelstandspreises'" + }, + "version_netzwerk_patronage_greeting_eyebrow": { + "name": "version_netzwerk_patronage_greeting_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grußwort'" + }, + "version_netzwerk_patronage_greeting_role": { + "name": "version_netzwerk_patronage_greeting_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin'" + }, + "version_netzwerk_patronage_greeting_name": { + "name": "version_netzwerk_patronage_greeting_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ilse Aigner MdL'" + }, + "version_netzwerk_patronage_greeting_title_line1": { + "name": "version_netzwerk_patronage_greeting_title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Präsidentin des Bayerischen Landtags'" + }, + "version_netzwerk_patronage_greeting_title_line2": { + "name": "version_netzwerk_patronage_greeting_title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerische Staatsministerin für Wirtschaft a.D.'" + }, + "version_netzwerk_patronage_greeting_quote": { + "name": "version_netzwerk_patronage_greeting_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Der Bayerische Mittelstandspreis steht für das, was Bayern stark macht: Unternehmergeist, Verantwortung und Qualität. Mit großer Freude übernehme ich erneut die Schirmherrschaft für diesen bedeutenden Preis.“'" + }, + "version_netzwerk_patronage_greeting_attribution": { + "name": "version_netzwerk_patronage_greeting_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'– Ilse Aigner MdL, Präsidentin des Bayerischen Landtags'" + }, + "version_netzwerk_jury_intro_eyebrow": { + "name": "version_netzwerk_jury_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wer entscheidet?'" + }, + "version_netzwerk_jury_intro_heading": { + "name": "version_netzwerk_jury_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNABHÄNGIGE EXPERTISE FÜR DEN MITTELSTAND.'" + }, + "version_netzwerk_jury_intro_description": { + "name": "version_netzwerk_jury_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises besteht ausschließlich aus ehrenamtlich tätigen Expertinnen und Experten. Kein Mitglied steht in wirtschaftlicher Verbindung zu einem Bewerber – Transparenz und Unparteilichkeit sind die Grundpfeiler unseres Verfahrens.'" + }, + "version_netzwerk_jury_eyebrow": { + "name": "version_netzwerk_jury_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Gremium'" + }, + "version_netzwerk_jury_heading": { + "name": "version_netzwerk_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNSERE JURY 2026'" + }, + "version_netzwerk_jury_description": { + "name": "version_netzwerk_jury_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unabhängige Expertinnen und Experten aus Wirtschaft, Wissenschaft und Verbänden, für einen vollständig unabhängigen Bewertungsprozess.'" + }, + "version_netzwerk_jury_chair_badge": { + "name": "version_netzwerk_jury_chair_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury-Vorsitz'" + }, + "version_netzwerk_jury_note": { + "name": "version_netzwerk_jury_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis: Einzelne Persönlichkeiten engagieren sich sowohl in der Jury als auch als Partner des BMP – beide Rollen werden auf dieser Seite getrennt ausgewiesen.'" + }, + "version_netzwerk_expertise_eyebrow": { + "name": "version_netzwerk_expertise_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hintergrund & Expertise'" + }, + "version_netzwerk_expertise_heading": { + "name": "version_netzwerk_expertise_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIE BEWERTET DIE JURY?'" + }, + "version_netzwerk_expertise_quote": { + "name": "version_netzwerk_expertise_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des BMP ist vollständig von wirtschaftlichen Interessen unabhängig. Jede Entscheidung wird transparent nachvollzogen – das ist unser Versprechen an die Unternehmen Bayerns.'" + }, + "version_netzwerk_expertise_quote_attribution": { + "name": "version_netzwerk_expertise_quote_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Prof. Dr. Klaus Bergmann, Juryvorsitzender'" + }, + "version_netzwerk_partners_eyebrow": { + "name": "version_netzwerk_partners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netzwerkqualität'" + }, + "version_netzwerk_partners_heading": { + "name": "version_netzwerk_partners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PARTNER & SPONSOREN'" + }, + "version_netzwerk_partners_description": { + "name": "version_netzwerk_partners_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Partner in drei Kategorien: Hauptsponsoren, Medienpartner und weitere Sponsoren. Klicken für Details.'" + }, + "version_netzwerk_partners_detail_label": { + "name": "version_netzwerk_partners_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "version_netzwerk_partners_premium_label": { + "name": "version_netzwerk_partners_premium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Premium'" + }, + "version_netzwerk_partners_default_logo_color": { + "name": "version_netzwerk_partners_default_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#111D55'" + }, + "version_netzwerk_partners_modal_industry_label": { + "name": "version_netzwerk_partners_modal_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_netzwerk_partners_modal_location_label": { + "name": "version_netzwerk_partners_modal_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_netzwerk_partners_modal_web_label": { + "name": "version_netzwerk_partners_modal_web_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Web'" + }, + "version_netzwerk_partners_modal_about_label": { + "name": "version_netzwerk_partners_modal_about_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "version_netzwerk_partners_modal_website_label": { + "name": "version_netzwerk_partners_modal_website_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen'" + }, + "version_netzwerk_partners_modal_close_label": { + "name": "version_netzwerk_partners_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "version_netzwerk_partners_modal_footer_title": { + "name": "version_netzwerk_partners_modal_footer_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis 2026'" + }, + "version_netzwerk_partners_modal_footer_role_prefix": { + "name": "version_netzwerk_partners_modal_footer_role_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Offizieller'" + }, + "version_netzwerk_sponsoring_eyebrow": { + "name": "version_netzwerk_sponsoring_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wachstum durch Partnerschaft'" + }, + "version_netzwerk_sponsoring_heading": { + "name": "version_netzwerk_sponsoring_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIR FREUEN UNS ÜBER NEUE SPONSOREN.'" + }, + "version_netzwerk_sponsoring_description": { + "name": "version_netzwerk_sponsoring_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Positionieren Sie Ihre Marke im exklusivsten Netzwerk des bayerischen Mittelstands – mit maßgeschneiderten Sponsoring-Paketen.'" + }, + "version_netzwerk_sponsoring_image_id": { + "name": "version_netzwerk_sponsoring_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_netzwerk_sponsoring_image_alt": { + "name": "version_netzwerk_sponsoring_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "version_netzwerk_sponsoring_image_label": { + "name": "version_netzwerk_sponsoring_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "version_netzwerk_sponsoring_form_eyebrow": { + "name": "version_netzwerk_sponsoring_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sponsoring 2026'" + }, + "version_netzwerk_sponsoring_footnote_prefix": { + "name": "version_netzwerk_sponsoring_footnote_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "version_netzwerk_sponsoring_footnote_label": { + "name": "version_netzwerk_sponsoring_footnote_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_netzwerk_sponsoring_footnote_url": { + "name": "version_netzwerk_sponsoring_footnote_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_netzwerk_sponsoring_form_step1_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step1_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1 – Paket wählen'" + }, + "version_netzwerk_sponsoring_form_step1_heading": { + "name": "version_netzwerk_sponsoring_form_step1_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Interesse an'" + }, + "version_netzwerk_sponsoring_form_step2_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step2_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 2 – Unternehmen'" + }, + "version_netzwerk_sponsoring_form_step2_heading": { + "name": "version_netzwerk_sponsoring_form_step2_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Unternehmen'" + }, + "version_netzwerk_sponsoring_form_company_label": { + "name": "version_netzwerk_sponsoring_form_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen *'" + }, + "version_netzwerk_sponsoring_form_company_placeholder": { + "name": "version_netzwerk_sponsoring_form_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_netzwerk_sponsoring_form_industry_label": { + "name": "version_netzwerk_sponsoring_form_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_netzwerk_sponsoring_form_industry_placeholder": { + "name": "version_netzwerk_sponsoring_form_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Finanzdienstleistungen'" + }, + "version_netzwerk_sponsoring_form_step3_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step3_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 3 – Kontakt'" + }, + "version_netzwerk_sponsoring_form_step3_heading": { + "name": "version_netzwerk_sponsoring_form_step3_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner'" + }, + "version_netzwerk_sponsoring_form_contact_label": { + "name": "version_netzwerk_sponsoring_form_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner *'" + }, + "version_netzwerk_sponsoring_form_contact_placeholder": { + "name": "version_netzwerk_sponsoring_form_contact_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_netzwerk_sponsoring_form_email_label": { + "name": "version_netzwerk_sponsoring_form_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail *'" + }, + "version_netzwerk_sponsoring_form_email_placeholder": { + "name": "version_netzwerk_sponsoring_form_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_netzwerk_sponsoring_form_back_label": { + "name": "version_netzwerk_sponsoring_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_netzwerk_sponsoring_form_next_label": { + "name": "version_netzwerk_sponsoring_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_netzwerk_sponsoring_form_submit_label": { + "name": "version_netzwerk_sponsoring_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Exposé anfordern'" + }, + "version_netzwerk_sponsoring_form_required_package_error": { + "name": "version_netzwerk_sponsoring_form_required_package_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen Sie ein Paket.'" + }, + "version_netzwerk_sponsoring_form_required_field_error": { + "name": "version_netzwerk_sponsoring_form_required_field_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_netzwerk_sponsoring_form_invalid_email_error": { + "name": "version_netzwerk_sponsoring_form_invalid_email_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_netzwerk_sponsoring_form_done_label": { + "name": "version_netzwerk_sponsoring_form_done_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_netzwerk_sponsoring_form_success_heading": { + "name": "version_netzwerk_sponsoring_form_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_netzwerk_sponsoring_form_success_message_prefix": { + "name": "version_netzwerk_sponsoring_form_success_message_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank,'" + }, + "version_netzwerk_sponsoring_form_success_message_suffix": { + "name": "version_netzwerk_sponsoring_form_success_message_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen unser Sponsoring-Exposé innerhalb von 48 Stunden zu.'" + }, + "version_netzwerk_sponsoring_form_footer_text": { + "name": "version_netzwerk_sponsoring_form_footer_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns innerhalb von 48 Stunden.'" + }, + "version_mitglied_werden_header_brand_label": { + "name": "version_mitglied_werden_header_brand_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026'" + }, + "version_mitglied_werden_header_back_label": { + "name": "version_mitglied_werden_header_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_mitglied_werden_header_back_url": { + "name": "version_mitglied_werden_header_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/'" + }, + "version_mitglied_werden_hero_image_id": { + "name": "version_mitglied_werden_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_mitglied_werden_hero_image_alt": { + "name": "version_mitglied_werden_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitgliedschaft'" + }, + "version_mitglied_werden_hero_eyebrow": { + "name": "version_mitglied_werden_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitgliedschaft'" + }, + "version_mitglied_werden_hero_heading": { + "name": "version_mitglied_werden_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DEIN WEG ZU UNS.'" + }, + "version_mitglied_werden_hero_description": { + "name": "version_mitglied_werden_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis lebt vom Engagement seiner Mitglieder.\nEine Mitgliedschaft ist Unterstützung, damit der Preis weiterhin unabhängig\nund kostenlos umgesetzt werden kann.'" + }, + "version_mitglied_werden_benefits_eyebrow": { + "name": "version_mitglied_werden_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Deine Vorteile'" + }, + "version_mitglied_werden_benefits_heading": { + "name": "version_mitglied_werden_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS DU GEWINNST.'" + }, + "version_mitglied_werden_about_eyebrow": { + "name": "version_mitglied_werden_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Verein'" + }, + "version_mitglied_werden_about_heading": { + "name": "version_mitglied_werden_about_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER WIR SIND.'" + }, + "version_mitglied_werden_about_descriptor": { + "name": "version_mitglied_werden_about_descriptor", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis e.V., eingetragener gemeinnütziger Verein'" + }, + "version_mitglied_werden_pricing_eyebrow": { + "name": "version_mitglied_werden_pricing_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitgliedsbeitrag'" + }, + "version_mitglied_werden_pricing_heading": { + "name": "version_mitglied_werden_pricing_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR BEITRAG.'" + }, + "version_mitglied_werden_pricing_employee_label": { + "name": "version_mitglied_werden_pricing_employee_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anzahl Mitarbeiter wählen'" + }, + "version_mitglied_werden_pricing_select_placeholder": { + "name": "version_mitglied_werden_pricing_select_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen…'" + }, + "version_mitglied_werden_pricing_option_suffix": { + "name": "version_mitglied_werden_pricing_option_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_mitglied_werden_pricing_result_eyebrow": { + "name": "version_mitglied_werden_pricing_result_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Beitragsübersicht'" + }, + "version_mitglied_werden_pricing_annual_net_label": { + "name": "version_mitglied_werden_pricing_annual_net_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (netto)'" + }, + "version_mitglied_werden_pricing_annual_gross_label": { + "name": "version_mitglied_werden_pricing_annual_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (19 % MwSt.)'" + }, + "version_mitglied_werden_pricing_annual_gross_short_label": { + "name": "version_mitglied_werden_pricing_annual_gross_short_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (brutto)'" + }, + "version_mitglied_werden_pricing_admission_gross_label": { + "name": "version_mitglied_werden_pricing_admission_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aufnahmegebühr (brutto)'" + }, + "version_mitglied_werden_pricing_total_year_one_label": { + "name": "version_mitglied_werden_pricing_total_year_one_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gesamt Jahr 1 (anteilig)'" + }, + "version_mitglied_werden_pricing_footnote": { + "name": "version_mitglied_werden_pricing_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'* Anteilig ab nächstem Monatsersten bis 31.12. des laufenden Jahres. Ab dem Folgejahr gilt der volle Jahresbeitrag.'" + }, + "version_mitglied_werden_pricing_cta_label": { + "name": "version_mitglied_werden_pricing_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden →'" + }, + "version_mitglied_werden_pricing_cta_href": { + "name": "version_mitglied_werden_pricing_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "version_mitglied_werden_pricing_table_toggle_label": { + "name": "version_mitglied_werden_pricing_table_toggle_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vollständige Beitragsstaffel'" + }, + "version_mitglied_werden_pricing_table_employee_header": { + "name": "version_mitglied_werden_pricing_table_employee_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_mitglied_werden_pricing_table_net_header": { + "name": "version_mitglied_werden_pricing_table_net_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netto / Jahr'" + }, + "version_mitglied_werden_pricing_table_gross_header": { + "name": "version_mitglied_werden_pricing_table_gross_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Brutto / Jahr'" + }, + "version_mitglied_werden_pricing_table_note_prefix": { + "name": "version_mitglied_werden_pricing_table_note_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zzgl. einmalige Aufnahmegebühr'" + }, + "version_mitglied_werden_pricing_table_note_suffix": { + "name": "version_mitglied_werden_pricing_table_note_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'(brutto) im ersten Jahr. Alle Angaben inkl. 19 % MwSt.'" + }, + "version_mitglied_werden_pricing_vat_rate": { + "name": "version_mitglied_werden_pricing_vat_rate", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0.19 + }, + "version_mitglied_werden_pricing_admission_fee_net": { + "name": "version_mitglied_werden_pricing_admission_fee_net", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 500 + }, + "version_mitglied_werden_form_intro_eyebrow": { + "name": "version_mitglied_werden_form_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt beitreten'" + }, + "version_mitglied_werden_form_intro_heading": { + "name": "version_mitglied_werden_form_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DU BIST DABEI.'" + }, + "version_mitglied_werden_form_intro_description": { + "name": "version_mitglied_werden_form_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fülle das Formular aus und wir melden uns innerhalb von 48 Stunden bei dir.\nDie Mitgliedschaft beginnt mit Bestätigung durch den Vorstand.'" + }, + "version_mitglied_werden_form_intro_image_id": { + "name": "version_mitglied_werden_form_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_mitglied_werden_form_intro_image_alt": { + "name": "version_mitglied_werden_form_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder'" + }, + "version_mitglied_werden_form_intro_image_label": { + "name": "version_mitglied_werden_form_intro_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder 2025'" + }, + "version_mitglied_werden_wizard": { + "name": "version_mitglied_werden_wizard", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"requiredSuffix\":\"*\",\"optionalSuffix\":\"(optional)\",\"stepCounterTemplate\":\"Schritt {step} von {total}\",\"reviewFallback\":\"–\",\"nav\":{\"backLabel\":\"← Zurück\",\"nextLabel\":\"Weiter →\",\"submitLabel\":\"Mitgliedschaftsantrag verbindlich einreichen\"},\"steps\":[{\"id\":1,\"label\":\"Unternehmen\"},{\"id\":2,\"label\":\"Kontakt\"},{\"id\":3,\"label\":\"Details\"},{\"id\":4,\"label\":\"Zahlung\"},{\"id\":5,\"label\":\"Abschluss\"}],\"validation\":{\"required\":\"Pflichtfeld\",\"select\":\"Bitte wählen\",\"postalCode\":\"5-stellige PLZ erforderlich\",\"email\":\"Gültige E-Mail erforderlich\",\"iban\":\"Ungültige IBAN (DE, 22 Zeichen)\",\"sepa\":\"Bitte SEPA-Mandat bestätigen\"},\"tiers\":[{\"max\":10,\"label\":\"bis 10\",\"annual\":480},{\"max\":20,\"label\":\"bis 20\",\"annual\":600},{\"max\":50,\"label\":\"bis 50\",\"annual\":900},{\"max\":100,\"label\":\"bis 100\",\"annual\":1200},{\"max\":250,\"label\":\"bis 250\",\"annual\":2400},{\"max\":1000,\"label\":\"bis 1.000\",\"annual\":3600}],\"vatRate\":0.19,\"admissionFeeNet\":500,\"pricingSummary\":{\"eyebrow\":\"Beitragsübersicht\",\"annualNetLabel\":\"Jahresbeitrag (netto)\",\"annualGrossLabel\":\"Jahresbeitrag (brutto)\",\"admissionGrossLabel\":\"Aufnahmegebühr (brutto)\",\"totalYearOneLabel\":\"Gesamt Jahr 1 (anteilig)\"},\"fields\":{\"company\":{\"title\":\"Ihr Unternehmen\",\"subtitle\":\"Angaben zum antragstellenden Unternehmen\",\"legalForms\":[\"GmbH\",\"GmbH & Co. KG\",\"AG\",\"UG\",\"KG\",\"OHG\",\"GbR\",\"Einzelunternehmen\",\"e.K.\",\"Sonstige\"],\"companyNameLabel\":\"Firmenname\",\"companyNamePlaceholder\":\"Muster GmbH\",\"legalFormLabel\":\"Rechtsform\",\"employeesLabel\":\"Anzahl Mitarbeiter\",\"streetLabel\":\"Straße & Hausnummer\",\"streetPlaceholder\":\"Musterstraße 42\",\"postalCodeLabel\":\"PLZ\",\"postalCodePlaceholder\":\"12345\",\"cityLabel\":\"Ort\",\"cityPlaceholder\":\"Berlin\",\"websiteLabel\":\"Website\",\"websitePlaceholder\":\"https://www.ihrewebsite.de\"},\"contact\":{\"title\":\"Kontaktperson\",\"subtitle\":\"Ansprechpartner für die Mitgliedschaft\",\"salutations\":[\"Herr\",\"Frau\",\"Divers\"],\"salutationLabel\":\"Anrede\",\"firstNameLabel\":\"Vorname\",\"firstNamePlaceholder\":\"Max\",\"lastNameLabel\":\"Nachname\",\"lastNamePlaceholder\":\"Mustermann\",\"positionLabel\":\"Position / Funktion\",\"positionPlaceholder\":\"z. B. Geschäftsführer\",\"emailLabel\":\"E-Mail-Adresse\",\"emailPlaceholder\":\"max@muster.de\",\"phoneLabel\":\"Telefon\",\"phonePlaceholder\":\"+49 30 123456\"},\"details\":{\"title\":\"Mitgliedschaft & Details\",\"subtitle\":\"Beitragsübersicht und Eintrittsdatum\",\"entryDateLabel\":\"Gewünschtes Eintrittsdatum\",\"referralLabel\":\"Wie wurden Sie aufmerksam?\",\"referralOptions\":[\"Empfehlung\",\"Veranstaltung\",\"Google\",\"Social Media\",\"Presse\",\"Sonstiges\"],\"motivationLabel\":\"Ihre Motivation (optional)\",\"motivationPlaceholder\":\"Was erhoffen Sie sich von der Mitgliedschaft beim BMP e.V.?\",\"motivationMaxLength\":500},\"payment\":{\"title\":\"SEPA-Lastschriftmandat\",\"subtitle\":\"Bankverbindung für den Beitragseinzug\",\"mandateText\":\"Ich ermächtige den BMP e.V., Zahlungen von meinem Konto mittels Lastschrift einzuziehen. Zugleich weise ich mein Kreditinstitut an, die vom BMP e.V. auf mein Konto gezogenen Lastschriften einzulösen. Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des belasteten Betrages verlangen. Es gelten dabei die mit meinem Kreditinstitut vereinbarten Bedingungen. Die Mandatsreferenz wird separat mitgeteilt. Gläubiger-Identifikationsnummer: DE98ZZZ09999999999.\",\"accountHolderLabel\":\"Kontoinhaber\",\"accountHolderPlaceholder\":\"Max Mustermann\",\"ibanLabel\":\"IBAN\",\"ibanPlaceholder\":\"DE00 0000 0000 0000 0000 00\",\"ibanValidLabel\":\"✓ OK\",\"ibanPendingLabel\":\"…\",\"bicLabel\":\"BIC\",\"bicPlaceholder\":\"BELADEBEXXX\",\"bicAutoPlaceholder\":\"Wird ausgefüllt\",\"bankLabel\":\"Bank / Kreditinstitut\",\"bankPlaceholder\":\"Berliner Sparkasse\",\"sepaCheckboxLabel\":\"Ich bestätige das SEPA-Lastschriftmandat und ermächtige den BMP e.V. zum Einzug.\"},\"summary\":{\"title\":\"Zusammenfassung & Abschluss\",\"subtitle\":\"Bitte prüfen Sie Ihre Angaben\",\"companyAccordion\":\"Unternehmen\",\"contactAccordion\":\"Kontaktperson\",\"paymentAccordion\":\"Zahlung\",\"requiredTitle\":\"Pflichtbestätigungen\",\"optionalTitle\":\"Optional\",\"labels\":{\"companyName\":\"Firmenname\",\"legalForm\":\"Rechtsform\",\"address\":\"Adresse\",\"employees\":\"Mitarbeiter\",\"website\":\"Website\",\"name\":\"Name\",\"position\":\"Position\",\"email\":\"E-Mail\",\"phone\":\"Telefon\",\"accountHolder\":\"Kontoinhaber\",\"iban\":\"IBAN\",\"bic\":\"BIC\",\"bank\":\"Bank\",\"entryDate\":\"Eintrittsdatum\",\"annualContribution\":\"Jahresbeitrag\"},\"consents\":{\"satzung\":\"Ich habe die Satzung des BMP e.V. gelesen und erkenne sie an.\",\"datenschutz\":\"Ich habe die Datenschutzerklärung gelesen und stimme zu.\",\"widerruf\":\"Ich habe die Kündigungsfrist zur Kenntnis genommen (1 Jahr zum Jahresende).\",\"newsletter\":\"Ich möchte elektronische Informationen, Einladungen und den Newsletter erhalten.\",\"websitePub\":\"Meinen Firmennamen auf der Website des BMP e.V. als Mitglied veröffentlichen.\"}}},\"success\":{\"heading\":\"Ihr Antrag ist eingegangen.\",\"message\":\"Wir melden uns innerhalb von 5 Werktagen bei Ihnen.\",\"nextStepsTitle\":\"Ihre nächsten Schritte\",\"steps\":[{\"num\":\"1\",\"title\":\"Bestätigung per E-Mail\",\"desc\":\"Sie erhalten in Kürze eine Eingangsbestätigung.\"},{\"num\":\"2\",\"title\":\"Prüfung durch den Vorstand\",\"desc\":\"Ihr Antrag wird in der nächsten Sitzung behandelt.\"},{\"num\":\"3\",\"title\":\"Willkommen im BMP e.V.\",\"desc\":\"Nach Bestätigung erhalten Sie Ihre Mitgliedsdaten.\"}]}}'" + }, + "version_mitglied_werden_testimonials_eyebrow": { + "name": "version_mitglied_werden_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Mitglieder'" + }, + "version_mitglied_werden_testimonials_heading": { + "name": "version_mitglied_werden_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS MITGLIEDER SAGEN.'" + }, + "version_mitglied_werden_faq_eyebrow": { + "name": "version_mitglied_werden_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige Fragen'" + }, + "version_mitglied_werden_faq_heading": { + "name": "version_mitglied_werden_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'FAQ.'" + }, + "version_mitglied_werden_bottom_cta_eyebrow": { + "name": "version_mitglied_werden_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werde Teil des BMP'" + }, + "version_mitglied_werden_bottom_cta_heading": { + "name": "version_mitglied_werden_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERSTÜTZE. NETZWERKE. WIRKE.'" + }, + "version_mitglied_werden_bottom_cta_cta_label": { + "name": "version_mitglied_werden_bottom_cta_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden'" + }, + "version_mitglied_werden_bottom_cta_cta_href": { + "name": "version_mitglied_werden_bottom_cta_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_image_id": { + "name": "version_meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_parent_idx": { + "name": "_pages_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_pages_v_version_hero_version_hero_media_idx": { + "name": "_pages_v_version_hero_version_hero_media_idx", + "columns": [ + "version_hero_media_id" + ], + "isUnique": false + }, + "_pages_v_version_home_hero_version_home_hero_background__idx": { + "name": "_pages_v_version_home_hero_version_home_hero_background__idx", + "columns": [ + "version_home_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_quick_check_version_home_quick_che_idx": { + "name": "_pages_v_version_home_quick_check_version_home_quick_che_idx", + "columns": [ + "version_home_quick_check_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_intro_version_home_intro_image_idx": { + "name": "_pages_v_version_home_intro_version_home_intro_image_idx", + "columns": [ + "version_home_intro_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_winners_version_home_winners_fallb_idx": { + "name": "_pages_v_version_home_winners_version_home_winners_fallb_idx", + "columns": [ + "version_home_winners_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_benefits_version_home_benefits_ima_idx": { + "name": "_pages_v_version_home_benefits_version_home_benefits_ima_idx", + "columns": [ + "version_home_benefits_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_application_version_home_applicati_idx": { + "name": "_pages_v_version_home_application_version_home_applicati_idx", + "columns": [ + "version_home_application_award_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_video_modal_version_home_video_mod_idx": { + "name": "_pages_v_version_home_video_modal_version_home_video_mod_idx", + "columns": [ + "version_home_video_modal_video_id" + ], + "isUnique": false + }, + "_pages_v_version_contact_hero_version_contact_hero_backg_idx": { + "name": "_pages_v_version_contact_hero_version_contact_hero_backg_idx", + "columns": [ + "version_contact_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_version_contact_info_form__idx": { + "name": "_pages_v_version_contact_info_version_contact_info_form__idx", + "columns": [ + "version_contact_info_form_image_id" + ], + "isUnique": false + }, + "_pages_v_version_participation_hero_version_participatio_idx": { + "name": "_pages_v_version_participation_hero_version_participatio_idx", + "columns": [ + "version_participation_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_participation_application_form_version__idx": { + "name": "_pages_v_version_participation_application_form_version__idx", + "columns": [ + "version_participation_application_form_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_hero_version_about_hero_backgroun_idx": { + "name": "_pages_v_version_about_hero_version_about_hero_backgroun_idx", + "columns": [ + "version_about_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_prize_version_about_prize_image_idx": { + "name": "_pages_v_version_about_prize_version_about_prize_image_idx", + "columns": [ + "version_about_prize_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_mittelstand_version_about_mittels_idx": { + "name": "_pages_v_version_about_mittelstand_version_about_mittels_idx", + "columns": [ + "version_about_mittelstand_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_highlights_version_about_highligh_idx": { + "name": "_pages_v_version_about_highlights_version_about_highligh_idx", + "columns": [ + "version_about_highlights_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_preistraeger_index_hero_version_preistr_idx": { + "name": "_pages_v_version_preistraeger_index_hero_version_preistr_idx", + "columns": [ + "version_preistraeger_index_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_preistraeger_index_card_version_preistr_idx": { + "name": "_pages_v_version_preistraeger_index_card_version_preistr_idx", + "columns": [ + "version_preistraeger_index_card_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_hero_version_press_index_he_idx": { + "name": "_pages_v_version_press_index_hero_version_press_index_he_idx", + "columns": [ + "version_press_index_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_events_version_press_index__idx": { + "name": "_pages_v_version_press_index_events_version_press_index__idx", + "columns": [ + "version_press_index_events_collection_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_news_version_press_index_ne_idx": { + "name": "_pages_v_version_press_index_news_version_press_index_ne_idx", + "columns": [ + "version_press_index_news_collection_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_downloads_version_press_ind_idx": { + "name": "_pages_v_version_press_index_downloads_version_press_ind_idx", + "columns": [ + "version_press_index_downloads_kit_file_id" + ], + "isUnique": false + }, + "_pages_v_version_netzwerk_hero_version_netzwerk_hero_ima_idx": { + "name": "_pages_v_version_netzwerk_hero_version_netzwerk_hero_ima_idx", + "columns": [ + "version_netzwerk_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_netzwerk_sponsoring_version_netzwerk_sp_idx": { + "name": "_pages_v_version_netzwerk_sponsoring_version_netzwerk_sp_idx", + "columns": [ + "version_netzwerk_sponsoring_image_id" + ], + "isUnique": false + }, + "_pages_v_version_mitglied_werden_hero_version_mitglied_w_idx": { + "name": "_pages_v_version_mitglied_werden_hero_version_mitglied_w_idx", + "columns": [ + "version_mitglied_werden_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_mitglied_werden_form_intro_version_mitg_idx": { + "name": "_pages_v_version_mitglied_werden_form_intro_version_mitg_idx", + "columns": [ + "version_mitglied_werden_form_intro_image_id" + ], + "isUnique": false + }, + "_pages_v_version_meta_version_meta_image_idx": { + "name": "_pages_v_version_meta_version_meta_image_idx", + "columns": [ + "version_meta_image_id" + ], + "isUnique": false + }, + "_pages_v_version_version_spa_path_idx": { + "name": "_pages_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_pages_v_version_version_slug_idx": { + "name": "_pages_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_pages_v_version_version_updated_at_idx": { + "name": "_pages_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_pages_v_version_version_created_at_idx": { + "name": "_pages_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_pages_v_version_version__status_idx": { + "name": "_pages_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_pages_v_created_at_idx": { + "name": "_pages_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_pages_v_updated_at_idx": { + "name": "_pages_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_pages_v_latest_idx": { + "name": "_pages_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_pages_v_autosave_idx": { + "name": "_pages_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_parent_id_pages_id_fk": { + "name": "_pages_v_parent_id_pages_id_fk", + "tableFrom": "_pages_v", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_hero_media_id_media_id_fk": { + "name": "_pages_v_version_hero_media_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_hero_media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_home_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_quick_check_image_id_media_id_fk": { + "name": "_pages_v_version_home_quick_check_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_quick_check_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_intro_image_id_media_id_fk": { + "name": "_pages_v_version_home_intro_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_winners_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_home_winners_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_winners_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_benefits_image_id_media_id_fk": { + "name": "_pages_v_version_home_benefits_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_benefits_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_application_award_image_id_media_id_fk": { + "name": "_pages_v_version_home_application_award_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_application_award_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_video_modal_video_id_media_id_fk": { + "name": "_pages_v_version_home_video_modal_video_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_video_modal_video_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_contact_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_contact_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_contact_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_contact_info_form_image_id_media_id_fk": { + "name": "_pages_v_version_contact_info_form_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_contact_info_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_participation_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_participation_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_participation_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_participation_application_form_image_id_media_id_fk": { + "name": "_pages_v_version_participation_application_form_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_participation_application_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_about_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_prize_image_id_media_id_fk": { + "name": "_pages_v_version_about_prize_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_prize_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_mittelstand_image_id_media_id_fk": { + "name": "_pages_v_version_about_mittelstand_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_mittelstand_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_highlights_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_about_highlights_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_highlights_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_preistraeger_index_hero_image_id_media_id_fk": { + "name": "_pages_v_version_preistraeger_index_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_preistraeger_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_preistraeger_index_card_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_preistraeger_index_card_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_preistraeger_index_card_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_hero_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_events_collection_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_events_collection_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_events_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_news_collection_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_news_collection_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_news_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_downloads_kit_file_id_media_id_fk": { + "name": "_pages_v_version_press_index_downloads_kit_file_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_downloads_kit_file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_netzwerk_hero_image_id_media_id_fk": { + "name": "_pages_v_version_netzwerk_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_netzwerk_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_netzwerk_sponsoring_image_id_media_id_fk": { + "name": "_pages_v_version_netzwerk_sponsoring_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_netzwerk_sponsoring_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_mitglied_werden_hero_image_id_media_id_fk": { + "name": "_pages_v_version_mitglied_werden_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_mitglied_werden_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_mitglied_werden_form_intro_image_id_media_id_fk": { + "name": "_pages_v_version_mitglied_werden_form_intro_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_mitglied_werden_form_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_meta_image_id_media_id_fk": { + "name": "_pages_v_version_meta_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_rels": { + "name": "_pages_v_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_rels_order_idx": { + "name": "_pages_v_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "_pages_v_rels_parent_idx": { + "name": "_pages_v_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_pages_v_rels_path_idx": { + "name": "_pages_v_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "_pages_v_rels_pages_id_idx": { + "name": "_pages_v_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "_pages_v_rels_posts_id_idx": { + "name": "_pages_v_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "_pages_v_rels_categories_id_idx": { + "name": "_pages_v_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "_pages_v_rels_preistraeger_id_idx": { + "name": "_pages_v_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_rels_parent_fk": { + "name": "_pages_v_rels_parent_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "_pages_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_pages_fk": { + "name": "_pages_v_rels_pages_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_posts_fk": { + "name": "_pages_v_rels_posts_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_categories_fk": { + "name": "_pages_v_rels_categories_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_preistraeger_fk": { + "name": "_pages_v_rels_preistraeger_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_sections": { + "name": "posts_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "heading": { + "name": "heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_sections_order_idx": { + "name": "posts_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_sections_parent_id_idx": { + "name": "posts_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_sections_parent_id_fk": { + "name": "posts_sections_parent_id_fk", + "tableFrom": "posts_sections", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_tags": { + "name": "posts_tags", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_tags_order_idx": { + "name": "posts_tags_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_tags_parent_id_idx": { + "name": "posts_tags_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_tags_parent_id_fk": { + "name": "posts_tags_parent_id_fk", + "tableFrom": "posts_tags", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_related_slugs": { + "name": "posts_related_slugs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_related_slugs_order_idx": { + "name": "posts_related_slugs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_related_slugs_parent_id_idx": { + "name": "posts_related_slugs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_related_slugs_parent_id_fk": { + "name": "posts_related_slugs_parent_id_fk", + "tableFrom": "posts_related_slugs", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_populated_authors": { + "name": "posts_populated_authors", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_populated_authors_order_idx": { + "name": "posts_populated_authors_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_populated_authors_parent_id_idx": { + "name": "posts_populated_authors_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_populated_authors_parent_id_fk": { + "name": "posts_populated_authors_parent_id_fk", + "tableFrom": "posts_populated_authors", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts": { + "name": "posts", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_image_id": { + "name": "hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "author_name": { + "name": "author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "author_role": { + "name": "author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "read_time": { + "name": "read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_not_found_title": { + "name": "detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel nicht gefunden'" + }, + "detail_page_not_found_back_label": { + "name": "detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse'" + }, + "detail_page_not_found_back_url": { + "name": "detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_hero_back_link_label": { + "name": "detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "detail_page_hero_back_link_url": { + "name": "detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_fallback_article_title": { + "name": "detail_page_fallback_article_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_category": { + "name": "detail_page_fallback_article_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_date": { + "name": "detail_page_fallback_article_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aktuell'" + }, + "detail_page_fallback_article_author_name": { + "name": "detail_page_fallback_article_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Redaktion'" + }, + "detail_page_fallback_article_author_role": { + "name": "detail_page_fallback_article_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_read_time": { + "name": "detail_page_fallback_article_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'1 min'" + }, + "detail_page_fallback_article_excerpt": { + "name": "detail_page_fallback_article_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Pressebeitrag wird aus Payload CMS geladen.'" + }, + "detail_page_fallback_article_tag": { + "name": "detail_page_fallback_article_tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_category_colors": { + "name": "detail_page_category_colors", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"Auszeichnung\":\"#111D55\",\"Innovation\":\"#2563EB\",\"Engagement\":\"#16A34A\",\"Wirtschaft\":\"#9333EA\"}'" + }, + "detail_page_meta_copy_read_time_suffix": { + "name": "detail_page_meta_copy_read_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Lesezeit'" + }, + "detail_page_sidebar_cta_heading": { + "name": "detail_page_sidebar_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "detail_page_sidebar_cta_text": { + "name": "detail_page_sidebar_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?'" + }, + "detail_page_sidebar_cta_label": { + "name": "detail_page_sidebar_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Bewerbung'" + }, + "detail_page_sidebar_cta_url": { + "name": "detail_page_sidebar_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "detail_page_related_heading": { + "name": "detail_page_related_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Artikel'" + }, + "detail_page_related_read_more_label": { + "name": "detail_page_related_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "content": { + "name": "content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "posts_hero_image_idx": { + "name": "posts_hero_image_idx", + "columns": [ + "hero_image_id" + ], + "isUnique": false + }, + "posts_detail_page_detail_page_fallback_image_idx": { + "name": "posts_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "posts_meta_meta_image_idx": { + "name": "posts_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "posts_spa_path_idx": { + "name": "posts_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "posts_slug_idx": { + "name": "posts_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "posts_updated_at_idx": { + "name": "posts_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "posts_created_at_idx": { + "name": "posts_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "posts__status_idx": { + "name": "posts__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_hero_image_id_media_id_fk": { + "name": "posts_hero_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "posts_detail_page_fallback_image_id_media_id_fk": { + "name": "posts_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "posts_meta_image_id_media_id_fk": { + "name": "posts_meta_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_rels": { + "name": "posts_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_rels_order_idx": { + "name": "posts_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "posts_rels_parent_idx": { + "name": "posts_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "posts_rels_path_idx": { + "name": "posts_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "posts_rels_posts_id_idx": { + "name": "posts_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "posts_rels_categories_id_idx": { + "name": "posts_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "posts_rels_users_id_idx": { + "name": "posts_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_rels_parent_fk": { + "name": "posts_rels_parent_fk", + "tableFrom": "posts_rels", + "tableTo": "posts", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_posts_fk": { + "name": "posts_rels_posts_fk", + "tableFrom": "posts_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_categories_fk": { + "name": "posts_rels_categories_fk", + "tableFrom": "posts_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_users_fk": { + "name": "posts_rels_users_fk", + "tableFrom": "posts_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_sections": { + "name": "_posts_v_version_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "heading": { + "name": "heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_sections_order_idx": { + "name": "_posts_v_version_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_sections_parent_id_idx": { + "name": "_posts_v_version_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_sections_parent_id_fk": { + "name": "_posts_v_version_sections_parent_id_fk", + "tableFrom": "_posts_v_version_sections", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_tags": { + "name": "_posts_v_version_tags", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_tags_order_idx": { + "name": "_posts_v_version_tags_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_tags_parent_id_idx": { + "name": "_posts_v_version_tags_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_tags_parent_id_fk": { + "name": "_posts_v_version_tags_parent_id_fk", + "tableFrom": "_posts_v_version_tags", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_related_slugs": { + "name": "_posts_v_version_related_slugs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_related_slugs_order_idx": { + "name": "_posts_v_version_related_slugs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_related_slugs_parent_id_idx": { + "name": "_posts_v_version_related_slugs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_related_slugs_parent_id_fk": { + "name": "_posts_v_version_related_slugs_parent_id_fk", + "tableFrom": "_posts_v_version_related_slugs", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_populated_authors": { + "name": "_posts_v_version_populated_authors", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_populated_authors_order_idx": { + "name": "_posts_v_version_populated_authors_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_populated_authors_parent_id_idx": { + "name": "_posts_v_version_populated_authors_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_populated_authors_parent_id_fk": { + "name": "_posts_v_version_populated_authors_parent_id_fk", + "tableFrom": "_posts_v_version_populated_authors", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v": { + "name": "_posts_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_image_id": { + "name": "version_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_excerpt": { + "name": "version_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_cat": { + "name": "version_cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_date": { + "name": "version_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_author_name": { + "name": "version_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_author_role": { + "name": "version_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_read_time": { + "name": "version_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_not_found_title": { + "name": "version_detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel nicht gefunden'" + }, + "version_detail_page_not_found_back_label": { + "name": "version_detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse'" + }, + "version_detail_page_not_found_back_url": { + "name": "version_detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_hero_back_link_label": { + "name": "version_detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "version_detail_page_hero_back_link_url": { + "name": "version_detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_fallback_article_title": { + "name": "version_detail_page_fallback_article_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_category": { + "name": "version_detail_page_fallback_article_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_date": { + "name": "version_detail_page_fallback_article_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aktuell'" + }, + "version_detail_page_fallback_article_author_name": { + "name": "version_detail_page_fallback_article_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Redaktion'" + }, + "version_detail_page_fallback_article_author_role": { + "name": "version_detail_page_fallback_article_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_read_time": { + "name": "version_detail_page_fallback_article_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'1 min'" + }, + "version_detail_page_fallback_article_excerpt": { + "name": "version_detail_page_fallback_article_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Pressebeitrag wird aus Payload CMS geladen.'" + }, + "version_detail_page_fallback_article_tag": { + "name": "version_detail_page_fallback_article_tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_category_colors": { + "name": "version_detail_page_category_colors", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"Auszeichnung\":\"#111D55\",\"Innovation\":\"#2563EB\",\"Engagement\":\"#16A34A\",\"Wirtschaft\":\"#9333EA\"}'" + }, + "version_detail_page_meta_copy_read_time_suffix": { + "name": "version_detail_page_meta_copy_read_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Lesezeit'" + }, + "version_detail_page_sidebar_cta_heading": { + "name": "version_detail_page_sidebar_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_detail_page_sidebar_cta_text": { + "name": "version_detail_page_sidebar_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?'" + }, + "version_detail_page_sidebar_cta_label": { + "name": "version_detail_page_sidebar_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Bewerbung'" + }, + "version_detail_page_sidebar_cta_url": { + "name": "version_detail_page_sidebar_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_detail_page_related_heading": { + "name": "version_detail_page_related_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Artikel'" + }, + "version_detail_page_related_read_more_label": { + "name": "version_detail_page_related_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "version_content": { + "name": "version_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_image_id": { + "name": "version_meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_parent_idx": { + "name": "_posts_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_posts_v_version_version_hero_image_idx": { + "name": "_posts_v_version_version_hero_image_idx", + "columns": [ + "version_hero_image_id" + ], + "isUnique": false + }, + "_posts_v_version_detail_page_version_detail_page_fallbac_idx": { + "name": "_posts_v_version_detail_page_version_detail_page_fallbac_idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_posts_v_version_meta_version_meta_image_idx": { + "name": "_posts_v_version_meta_version_meta_image_idx", + "columns": [ + "version_meta_image_id" + ], + "isUnique": false + }, + "_posts_v_version_version_spa_path_idx": { + "name": "_posts_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_posts_v_version_version_slug_idx": { + "name": "_posts_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_posts_v_version_version_updated_at_idx": { + "name": "_posts_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_posts_v_version_version_created_at_idx": { + "name": "_posts_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_posts_v_version_version__status_idx": { + "name": "_posts_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_posts_v_created_at_idx": { + "name": "_posts_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_posts_v_updated_at_idx": { + "name": "_posts_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_posts_v_latest_idx": { + "name": "_posts_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_posts_v_autosave_idx": { + "name": "_posts_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_parent_id_posts_id_fk": { + "name": "_posts_v_parent_id_posts_id_fk", + "tableFrom": "_posts_v", + "tableTo": "posts", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_hero_image_id_media_id_fk": { + "name": "_posts_v_version_hero_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_posts_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_meta_image_id_media_id_fk": { + "name": "_posts_v_version_meta_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_rels": { + "name": "_posts_v_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_rels_order_idx": { + "name": "_posts_v_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "_posts_v_rels_parent_idx": { + "name": "_posts_v_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_posts_v_rels_path_idx": { + "name": "_posts_v_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "_posts_v_rels_posts_id_idx": { + "name": "_posts_v_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "_posts_v_rels_categories_id_idx": { + "name": "_posts_v_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "_posts_v_rels_users_id_idx": { + "name": "_posts_v_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_rels_parent_fk": { + "name": "_posts_v_rels_parent_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "_posts_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_posts_fk": { + "name": "_posts_v_rels_posts_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_categories_fk": { + "name": "_posts_v_rels_categories_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_users_fk": { + "name": "_posts_v_rels_users_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events_eckdaten": { + "name": "events_eckdaten", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "events_eckdaten_order_idx": { + "name": "events_eckdaten_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "events_eckdaten_parent_id_idx": { + "name": "events_eckdaten_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_eckdaten_parent_id_fk": { + "name": "events_eckdaten_parent_id_fk", + "tableFrom": "events_eckdaten", + "tableTo": "events", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events_updates": { + "name": "events_updates", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "timestamp": { + "name": "timestamp", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "events_updates_order_idx": { + "name": "events_updates_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "events_updates_parent_id_idx": { + "name": "events_updates_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_updates_parent_id_fk": { + "name": "events_updates_parent_id_fk", + "tableFrom": "events_updates", + "tableTo": "events", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events": { + "name": "events", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "subtitle": { + "name": "subtitle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "long_description": { + "name": "long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "time": { + "name": "time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "venue": { + "name": "venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category": { + "name": "category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_not_found_title": { + "name": "detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event nicht gefunden'" + }, + "detail_page_not_found_back_label": { + "name": "detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse-Seite'" + }, + "detail_page_not_found_back_url": { + "name": "detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_date_format_month_names": { + "name": "detail_page_date_format_month_names", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"]'" + }, + "detail_page_date_format_time_suffix": { + "name": "detail_page_date_format_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhr'" + }, + "detail_page_update_styles": { + "name": "detail_page_update_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"ankündigung\":{\"bg\":\"#EBF4FF\",\"color\":\"#1D4ED8\",\"label\":\"Ankündigung\"},\"erinnerung\":{\"bg\":\"#FFFBEB\",\"color\":\"#B45309\",\"label\":\"Erinnerung\"},\"update\":{\"bg\":\"#F3F4F6\",\"color\":\"#374151\",\"label\":\"Update\"},\"highlight\":{\"bg\":\"#111D5512\",\"color\":\"#111D55\",\"label\":\"Highlight\"},\"ergebnis\":{\"bg\":\"#ECFDF5\",\"color\":\"#065F46\",\"label\":\"Ergebnis\"},\"wichtig\":{\"bg\":\"#FEF2F2\",\"color\":\"#991B1B\",\"label\":\"Wichtig\"}}'" + }, + "detail_page_status_styles": { + "name": "detail_page_status_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"geplant\":{\"label\":\"In Planung\",\"bg\":\"#111D5518\",\"color\":\"#111D55\"},\"anmeldung-offen\":{\"label\":\"Anmeldung offen\",\"bg\":\"#ECFDF5\",\"color\":\"#065F46\"},\"intern\":{\"label\":\"Intern\",\"bg\":\"#FEF9C3\",\"color\":\"#713F12\"},\"abgeschlossen\":{\"label\":\"Abgeschlossen\",\"bg\":\"#F3F4F6\",\"color\":\"#6B7280\"}}'" + }, + "detail_page_hero_back_link_label": { + "name": "detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "detail_page_hero_back_link_url": { + "name": "detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_fallback_event_title": { + "name": "detail_page_fallback_event_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "detail_page_fallback_event_date": { + "name": "detail_page_fallback_event_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "detail_page_fallback_event_time": { + "name": "detail_page_fallback_event_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhrzeit folgt'" + }, + "detail_page_fallback_event_location": { + "name": "detail_page_fallback_event_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "detail_page_fallback_event_venue": { + "name": "detail_page_fallback_event_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ort folgt'" + }, + "detail_page_fallback_event_category": { + "name": "detail_page_fallback_event_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "detail_page_fallback_event_status": { + "name": "detail_page_fallback_event_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "detail_page_fallback_event_long_description": { + "name": "detail_page_fallback_event_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieses Event wird aus Payload CMS geladen.'" + }, + "detail_page_sections_about_eyebrow": { + "name": "detail_page_sections_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über die Veranstaltung'" + }, + "detail_page_sections_facts_eyebrow": { + "name": "detail_page_sections_facts_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eckdaten'" + }, + "detail_page_sections_register_label": { + "name": "detail_page_sections_register_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt anmelden'" + }, + "detail_page_sections_register_url": { + "name": "detail_page_sections_register_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "detail_page_sections_question_label": { + "name": "detail_page_sections_question_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Frage stellen'" + }, + "detail_page_sections_question_url": { + "name": "detail_page_sections_question_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "detail_page_updates_copy_heading": { + "name": "detail_page_updates_copy_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Live Updates'" + }, + "detail_page_updates_copy_subscribe_label": { + "name": "detail_page_updates_copy_subscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abonnieren'" + }, + "detail_page_updates_copy_unsubscribe_label": { + "name": "detail_page_updates_copy_unsubscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abgemeldet'" + }, + "detail_page_updates_copy_subscribed_message": { + "name": "detail_page_updates_copy_subscribed_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓ Sie erhalten Benachrichtigungen für dieses Event.'" + }, + "detail_page_bottom_cta_eyebrow": { + "name": "detail_page_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr entdecken'" + }, + "detail_page_bottom_cta_heading": { + "name": "detail_page_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Veranstaltungen'" + }, + "detail_page_bottom_cta_label": { + "name": "detail_page_bottom_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "detail_page_bottom_cta_url": { + "name": "detail_page_bottom_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "events_image_idx": { + "name": "events_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + }, + "events_detail_page_detail_page_fallback_image_idx": { + "name": "events_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "events_spa_path_idx": { + "name": "events_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "events_slug_idx": { + "name": "events_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "events_updated_at_idx": { + "name": "events_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "events_created_at_idx": { + "name": "events_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "events__status_idx": { + "name": "events__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_image_id_media_id_fk": { + "name": "events_image_id_media_id_fk", + "tableFrom": "events", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_detail_page_fallback_image_id_media_id_fk": { + "name": "events_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "events", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v_version_eckdaten": { + "name": "_events_v_version_eckdaten", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_version_eckdaten_order_idx": { + "name": "_events_v_version_eckdaten_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_events_v_version_eckdaten_parent_id_idx": { + "name": "_events_v_version_eckdaten_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_version_eckdaten_parent_id_fk": { + "name": "_events_v_version_eckdaten_parent_id_fk", + "tableFrom": "_events_v_version_eckdaten", + "tableTo": "_events_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v_version_updates": { + "name": "_events_v_version_updates", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "timestamp": { + "name": "timestamp", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_version_updates_order_idx": { + "name": "_events_v_version_updates_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_events_v_version_updates_parent_id_idx": { + "name": "_events_v_version_updates_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_version_updates_parent_id_fk": { + "name": "_events_v_version_updates_parent_id_fk", + "tableFrom": "_events_v_version_updates", + "tableTo": "_events_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v": { + "name": "_events_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_subtitle": { + "name": "version_subtitle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_image_id": { + "name": "version_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_description": { + "name": "version_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_long_description": { + "name": "version_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_date": { + "name": "version_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_time": { + "name": "version_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_venue": { + "name": "version_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_category": { + "name": "version_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_status": { + "name": "version_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_not_found_title": { + "name": "version_detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event nicht gefunden'" + }, + "version_detail_page_not_found_back_label": { + "name": "version_detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse-Seite'" + }, + "version_detail_page_not_found_back_url": { + "name": "version_detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_date_format_month_names": { + "name": "version_detail_page_date_format_month_names", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"]'" + }, + "version_detail_page_date_format_time_suffix": { + "name": "version_detail_page_date_format_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhr'" + }, + "version_detail_page_update_styles": { + "name": "version_detail_page_update_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"ankündigung\":{\"bg\":\"#EBF4FF\",\"color\":\"#1D4ED8\",\"label\":\"Ankündigung\"},\"erinnerung\":{\"bg\":\"#FFFBEB\",\"color\":\"#B45309\",\"label\":\"Erinnerung\"},\"update\":{\"bg\":\"#F3F4F6\",\"color\":\"#374151\",\"label\":\"Update\"},\"highlight\":{\"bg\":\"#111D5512\",\"color\":\"#111D55\",\"label\":\"Highlight\"},\"ergebnis\":{\"bg\":\"#ECFDF5\",\"color\":\"#065F46\",\"label\":\"Ergebnis\"},\"wichtig\":{\"bg\":\"#FEF2F2\",\"color\":\"#991B1B\",\"label\":\"Wichtig\"}}'" + }, + "version_detail_page_status_styles": { + "name": "version_detail_page_status_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"geplant\":{\"label\":\"In Planung\",\"bg\":\"#111D5518\",\"color\":\"#111D55\"},\"anmeldung-offen\":{\"label\":\"Anmeldung offen\",\"bg\":\"#ECFDF5\",\"color\":\"#065F46\"},\"intern\":{\"label\":\"Intern\",\"bg\":\"#FEF9C3\",\"color\":\"#713F12\"},\"abgeschlossen\":{\"label\":\"Abgeschlossen\",\"bg\":\"#F3F4F6\",\"color\":\"#6B7280\"}}'" + }, + "version_detail_page_hero_back_link_label": { + "name": "version_detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "version_detail_page_hero_back_link_url": { + "name": "version_detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_fallback_event_title": { + "name": "version_detail_page_fallback_event_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_detail_page_fallback_event_date": { + "name": "version_detail_page_fallback_event_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "version_detail_page_fallback_event_time": { + "name": "version_detail_page_fallback_event_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhrzeit folgt'" + }, + "version_detail_page_fallback_event_location": { + "name": "version_detail_page_fallback_event_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_detail_page_fallback_event_venue": { + "name": "version_detail_page_fallback_event_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ort folgt'" + }, + "version_detail_page_fallback_event_category": { + "name": "version_detail_page_fallback_event_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_detail_page_fallback_event_status": { + "name": "version_detail_page_fallback_event_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "version_detail_page_fallback_event_long_description": { + "name": "version_detail_page_fallback_event_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieses Event wird aus Payload CMS geladen.'" + }, + "version_detail_page_sections_about_eyebrow": { + "name": "version_detail_page_sections_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über die Veranstaltung'" + }, + "version_detail_page_sections_facts_eyebrow": { + "name": "version_detail_page_sections_facts_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eckdaten'" + }, + "version_detail_page_sections_register_label": { + "name": "version_detail_page_sections_register_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt anmelden'" + }, + "version_detail_page_sections_register_url": { + "name": "version_detail_page_sections_register_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_detail_page_sections_question_label": { + "name": "version_detail_page_sections_question_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Frage stellen'" + }, + "version_detail_page_sections_question_url": { + "name": "version_detail_page_sections_question_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "version_detail_page_updates_copy_heading": { + "name": "version_detail_page_updates_copy_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Live Updates'" + }, + "version_detail_page_updates_copy_subscribe_label": { + "name": "version_detail_page_updates_copy_subscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abonnieren'" + }, + "version_detail_page_updates_copy_unsubscribe_label": { + "name": "version_detail_page_updates_copy_unsubscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abgemeldet'" + }, + "version_detail_page_updates_copy_subscribed_message": { + "name": "version_detail_page_updates_copy_subscribed_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓ Sie erhalten Benachrichtigungen für dieses Event.'" + }, + "version_detail_page_bottom_cta_eyebrow": { + "name": "version_detail_page_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr entdecken'" + }, + "version_detail_page_bottom_cta_heading": { + "name": "version_detail_page_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Veranstaltungen'" + }, + "version_detail_page_bottom_cta_label": { + "name": "version_detail_page_bottom_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "version_detail_page_bottom_cta_url": { + "name": "version_detail_page_bottom_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_parent_idx": { + "name": "_events_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_events_v_version_version_image_idx": { + "name": "_events_v_version_version_image_idx", + "columns": [ + "version_image_id" + ], + "isUnique": false + }, + "_events_v_version_detail_page_version_detail_page_fallba_idx": { + "name": "_events_v_version_detail_page_version_detail_page_fallba_idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_events_v_version_version_spa_path_idx": { + "name": "_events_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_events_v_version_version_slug_idx": { + "name": "_events_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_events_v_version_version_updated_at_idx": { + "name": "_events_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_events_v_version_version_created_at_idx": { + "name": "_events_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_events_v_version_version__status_idx": { + "name": "_events_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_events_v_created_at_idx": { + "name": "_events_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_events_v_updated_at_idx": { + "name": "_events_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_events_v_latest_idx": { + "name": "_events_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_events_v_autosave_idx": { + "name": "_events_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_parent_id_events_id_fk": { + "name": "_events_v_parent_id_events_id_fk", + "tableFrom": "_events_v", + "tableTo": "events", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_events_v_version_image_id_media_id_fk": { + "name": "_events_v_version_image_id_media_id_fk", + "tableFrom": "_events_v", + "tableTo": "media", + "columnsFrom": [ + "version_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_events_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_events_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_events_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "preistraeger": { + "name": "preistraeger", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category": { + "name": "category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "award_type": { + "name": "award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "short_desc": { + "name": "short_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "long_desc": { + "name": "long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote_person": { + "name": "quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote_role": { + "name": "quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "has_media": { + "name": "has_media", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_breadcrumb_url": { + "name": "detail_page_breadcrumb_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "detail_page_breadcrumb_label": { + "name": "detail_page_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "detail_page_fallback_winner_name": { + "name": "detail_page_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_category": { + "name": "detail_page_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_award_type": { + "name": "detail_page_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "detail_page_fallback_winner_long_desc": { + "name": "detail_page_fallback_winner_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Preisträger wird aus Payload CMS geladen.'" + }, + "detail_page_fallback_winner_quote": { + "name": "detail_page_fallback_winner_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Erfolgsgeschichte wird aktuell in Payload CMS gepflegt.'" + }, + "detail_page_fallback_winner_quote_person": { + "name": "detail_page_fallback_winner_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP'" + }, + "detail_page_fallback_winner_quote_role": { + "name": "detail_page_fallback_winner_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_location": { + "name": "detail_page_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "detail_page_fallback_winner_industry": { + "name": "detail_page_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "detail_page_sections_company_heading": { + "name": "detail_page_sections_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "detail_page_sections_jury_heading": { + "name": "detail_page_sections_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Warum ausgezeichnet?'" + }, + "detail_page_sections_jury_text_before_name": { + "name": "detail_page_sections_jury_text_before_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises überzeugte'" + }, + "detail_page_sections_jury_text_after_name_before_category": { + "name": "detail_page_sections_jury_text_after_name_before_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'durch außergewöhnliche Leistungen im Bereich'" + }, + "detail_page_sections_jury_text_after_category": { + "name": "detail_page_sections_jury_text_after_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Unternehmen steht exemplarisch für die Stärken des bayerischen Mittelstands: unternehmerischen Mut, wertebasierte Führung und nachhaltige Wirkung weit über den eigenen Betrieb hinaus.'" + }, + "detail_page_side_image_image_id": { + "name": "detail_page_side_image_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_side_image_image_alt": { + "name": "detail_page_side_image_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala Preisverleihung'" + }, + "detail_page_facts_heading": { + "name": "detail_page_facts_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auf einen Blick'" + }, + "detail_page_facts_category_label": { + "name": "detail_page_facts_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kategorie'" + }, + "detail_page_facts_award_label": { + "name": "detail_page_facts_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "detail_page_facts_year_label": { + "name": "detail_page_facts_year_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahr'" + }, + "detail_page_facts_location_label": { + "name": "detail_page_facts_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "detail_page_facts_industry_label": { + "name": "detail_page_facts_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "detail_page_website_cta_label": { + "name": "detail_page_website_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen ↗'" + }, + "detail_page_back_link_url": { + "name": "detail_page_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "detail_page_back_link_label": { + "name": "detail_page_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "preistraeger_image_idx": { + "name": "preistraeger_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + }, + "preistraeger_detail_page_detail_page_fallback_image_idx": { + "name": "preistraeger_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "preistraeger_detail_page_side_image_detail_page_side_ima_idx": { + "name": "preistraeger_detail_page_side_image_detail_page_side_ima_idx", + "columns": [ + "detail_page_side_image_image_id" + ], + "isUnique": false + }, + "preistraeger_spa_path_idx": { + "name": "preistraeger_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "preistraeger_slug_idx": { + "name": "preistraeger_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "preistraeger_updated_at_idx": { + "name": "preistraeger_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "preistraeger_created_at_idx": { + "name": "preistraeger_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "preistraeger__status_idx": { + "name": "preistraeger__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "preistraeger_image_id_media_id_fk": { + "name": "preistraeger_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "preistraeger_detail_page_fallback_image_id_media_id_fk": { + "name": "preistraeger_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "preistraeger_detail_page_side_image_image_id_media_id_fk": { + "name": "preistraeger_detail_page_side_image_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "detail_page_side_image_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_preistraeger_v": { + "name": "_preistraeger_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_image_id": { + "name": "version_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_category": { + "name": "version_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_year": { + "name": "version_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_award_type": { + "name": "version_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_short_desc": { + "name": "version_short_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_long_desc": { + "name": "version_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_description": { + "name": "version_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote": { + "name": "version_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote_person": { + "name": "version_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote_role": { + "name": "version_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_industry": { + "name": "version_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_website": { + "name": "version_website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_has_media": { + "name": "version_has_media", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_breadcrumb_url": { + "name": "version_detail_page_breadcrumb_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_detail_page_breadcrumb_label": { + "name": "version_detail_page_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_detail_page_fallback_winner_name": { + "name": "version_detail_page_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_category": { + "name": "version_detail_page_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_award_type": { + "name": "version_detail_page_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_detail_page_fallback_winner_long_desc": { + "name": "version_detail_page_fallback_winner_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Preisträger wird aus Payload CMS geladen.'" + }, + "version_detail_page_fallback_winner_quote": { + "name": "version_detail_page_fallback_winner_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Erfolgsgeschichte wird aktuell in Payload CMS gepflegt.'" + }, + "version_detail_page_fallback_winner_quote_person": { + "name": "version_detail_page_fallback_winner_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP'" + }, + "version_detail_page_fallback_winner_quote_role": { + "name": "version_detail_page_fallback_winner_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_location": { + "name": "version_detail_page_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_detail_page_fallback_winner_industry": { + "name": "version_detail_page_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "version_detail_page_sections_company_heading": { + "name": "version_detail_page_sections_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "version_detail_page_sections_jury_heading": { + "name": "version_detail_page_sections_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Warum ausgezeichnet?'" + }, + "version_detail_page_sections_jury_text_before_name": { + "name": "version_detail_page_sections_jury_text_before_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises überzeugte'" + }, + "version_detail_page_sections_jury_text_after_name_before_category": { + "name": "version_detail_page_sections_jury_text_after_name_before_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'durch außergewöhnliche Leistungen im Bereich'" + }, + "version_detail_page_sections_jury_text_after_category": { + "name": "version_detail_page_sections_jury_text_after_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Unternehmen steht exemplarisch für die Stärken des bayerischen Mittelstands: unternehmerischen Mut, wertebasierte Führung und nachhaltige Wirkung weit über den eigenen Betrieb hinaus.'" + }, + "version_detail_page_side_image_image_id": { + "name": "version_detail_page_side_image_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_side_image_image_alt": { + "name": "version_detail_page_side_image_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala Preisverleihung'" + }, + "version_detail_page_facts_heading": { + "name": "version_detail_page_facts_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auf einen Blick'" + }, + "version_detail_page_facts_category_label": { + "name": "version_detail_page_facts_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kategorie'" + }, + "version_detail_page_facts_award_label": { + "name": "version_detail_page_facts_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_detail_page_facts_year_label": { + "name": "version_detail_page_facts_year_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahr'" + }, + "version_detail_page_facts_location_label": { + "name": "version_detail_page_facts_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_detail_page_facts_industry_label": { + "name": "version_detail_page_facts_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_detail_page_website_cta_label": { + "name": "version_detail_page_website_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen ↗'" + }, + "version_detail_page_back_link_url": { + "name": "version_detail_page_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_detail_page_back_link_label": { + "name": "version_detail_page_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_preistraeger_v_parent_idx": { + "name": "_preistraeger_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_image_idx": { + "name": "_preistraeger_v_version_version_image_idx", + "columns": [ + "version_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_detail_page_version_detail_page__idx": { + "name": "_preistraeger_v_version_detail_page_version_detail_page__idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_detail_page_side_image_version_d_idx": { + "name": "_preistraeger_v_version_detail_page_side_image_version_d_idx", + "columns": [ + "version_detail_page_side_image_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_spa_path_idx": { + "name": "_preistraeger_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_slug_idx": { + "name": "_preistraeger_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_updated_at_idx": { + "name": "_preistraeger_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_created_at_idx": { + "name": "_preistraeger_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_preistraeger_v_version_version__status_idx": { + "name": "_preistraeger_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_preistraeger_v_created_at_idx": { + "name": "_preistraeger_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_preistraeger_v_updated_at_idx": { + "name": "_preistraeger_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_preistraeger_v_latest_idx": { + "name": "_preistraeger_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_preistraeger_v_autosave_idx": { + "name": "_preistraeger_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_preistraeger_v_parent_id_preistraeger_id_fk": { + "name": "_preistraeger_v_parent_id_preistraeger_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "preistraeger", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_image_id_media_id_fk": { + "name": "_preistraeger_v_version_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_preistraeger_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_detail_page_side_image_image_id_media_id_fk": { + "name": "_preistraeger_v_version_detail_page_side_image_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_side_image_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "partners": { + "name": "partners", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 3 + }, + "sort_order": { + "name": "sort_order", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 100 + }, + "active": { + "name": "active", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "show_on_homepage": { + "name": "show_on_homepage", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_kind": { + "name": "logo_kind", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'text'" + }, + "logo_text": { + "name": "logo_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_subtext": { + "name": "logo_subtext", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_color": { + "name": "logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "full_desc": { + "name": "full_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "linkedin": { + "name": "linkedin", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_img": { + "name": "hero_img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "partners_stable_id_idx": { + "name": "partners_stable_id_idx", + "columns": [ + "stable_id" + ], + "isUnique": true + }, + "partners_logo_idx": { + "name": "partners_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + }, + "partners_updated_at_idx": { + "name": "partners_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "partners_created_at_idx": { + "name": "partners_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "partners__status_idx": { + "name": "partners__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "partners_logo_id_media_id_fk": { + "name": "partners_logo_id_media_id_fk", + "tableFrom": "partners", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_partners_v": { + "name": "_partners_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_name": { + "name": "version_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_stable_id": { + "name": "version_stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_role": { + "name": "version_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_tier": { + "name": "version_tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 3 + }, + "version_sort_order": { + "name": "version_sort_order", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 100 + }, + "version_active": { + "name": "version_active", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_show_on_homepage": { + "name": "version_show_on_homepage", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_logo_id": { + "name": "version_logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_alt": { + "name": "version_logo_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_kind": { + "name": "version_logo_kind", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'text'" + }, + "version_logo_text": { + "name": "version_logo_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_subtext": { + "name": "version_logo_subtext", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_color": { + "name": "version_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_desc": { + "name": "version_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_full_desc": { + "name": "version_full_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_industry": { + "name": "version_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_website": { + "name": "version_website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_linkedin": { + "name": "version_linkedin", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_img": { + "name": "version_hero_img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_partners_v_parent_idx": { + "name": "_partners_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_partners_v_version_version_stable_id_idx": { + "name": "_partners_v_version_version_stable_id_idx", + "columns": [ + "version_stable_id" + ], + "isUnique": false + }, + "_partners_v_version_version_logo_idx": { + "name": "_partners_v_version_version_logo_idx", + "columns": [ + "version_logo_id" + ], + "isUnique": false + }, + "_partners_v_version_version_updated_at_idx": { + "name": "_partners_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_partners_v_version_version_created_at_idx": { + "name": "_partners_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_partners_v_version_version__status_idx": { + "name": "_partners_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_partners_v_created_at_idx": { + "name": "_partners_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_partners_v_updated_at_idx": { + "name": "_partners_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_partners_v_latest_idx": { + "name": "_partners_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_partners_v_autosave_idx": { + "name": "_partners_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_partners_v_parent_id_partners_id_fk": { + "name": "_partners_v_parent_id_partners_id_fk", + "tableFrom": "_partners_v", + "tableTo": "partners", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_partners_v_version_logo_id_media_id_fk": { + "name": "_partners_v_version_logo_id_media_id_fk", + "tableFrom": "_partners_v", + "tableTo": "media", + "columnsFrom": [ + "version_logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "media": { + "name": "media", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "alt": { + "name": "alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "caption": { + "name": "caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "folder_id": { + "name": "folder_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "url": { + "name": "url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "thumbnail_u_r_l": { + "name": "thumbnail_u_r_l", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "filename": { + "name": "filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mime_type": { + "name": "mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "filesize": { + "name": "filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "height": { + "name": "height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "focal_x": { + "name": "focal_x", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "focal_y": { + "name": "focal_y", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_url": { + "name": "sizes_thumbnail_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_width": { + "name": "sizes_thumbnail_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_height": { + "name": "sizes_thumbnail_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_mime_type": { + "name": "sizes_thumbnail_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_filesize": { + "name": "sizes_thumbnail_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_filename": { + "name": "sizes_thumbnail_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_url": { + "name": "sizes_square_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_width": { + "name": "sizes_square_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_height": { + "name": "sizes_square_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_mime_type": { + "name": "sizes_square_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_filesize": { + "name": "sizes_square_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_filename": { + "name": "sizes_square_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_url": { + "name": "sizes_small_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_width": { + "name": "sizes_small_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_height": { + "name": "sizes_small_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_mime_type": { + "name": "sizes_small_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_filesize": { + "name": "sizes_small_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_filename": { + "name": "sizes_small_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_url": { + "name": "sizes_medium_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_width": { + "name": "sizes_medium_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_height": { + "name": "sizes_medium_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_mime_type": { + "name": "sizes_medium_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_filesize": { + "name": "sizes_medium_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_filename": { + "name": "sizes_medium_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_url": { + "name": "sizes_large_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_width": { + "name": "sizes_large_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_height": { + "name": "sizes_large_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_mime_type": { + "name": "sizes_large_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_filesize": { + "name": "sizes_large_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_filename": { + "name": "sizes_large_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_url": { + "name": "sizes_xlarge_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_width": { + "name": "sizes_xlarge_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_height": { + "name": "sizes_xlarge_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_mime_type": { + "name": "sizes_xlarge_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_filesize": { + "name": "sizes_xlarge_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_filename": { + "name": "sizes_xlarge_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_url": { + "name": "sizes_og_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_width": { + "name": "sizes_og_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_height": { + "name": "sizes_og_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_mime_type": { + "name": "sizes_og_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_filesize": { + "name": "sizes_og_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_filename": { + "name": "sizes_og_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "media_folder_idx": { + "name": "media_folder_idx", + "columns": [ + "folder_id" + ], + "isUnique": false + }, + "media_updated_at_idx": { + "name": "media_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "media_created_at_idx": { + "name": "media_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "media_filename_idx": { + "name": "media_filename_idx", + "columns": [ + "filename" + ], + "isUnique": true + }, + "media_sizes_thumbnail_sizes_thumbnail_filename_idx": { + "name": "media_sizes_thumbnail_sizes_thumbnail_filename_idx", + "columns": [ + "sizes_thumbnail_filename" + ], + "isUnique": false + }, + "media_sizes_square_sizes_square_filename_idx": { + "name": "media_sizes_square_sizes_square_filename_idx", + "columns": [ + "sizes_square_filename" + ], + "isUnique": false + }, + "media_sizes_small_sizes_small_filename_idx": { + "name": "media_sizes_small_sizes_small_filename_idx", + "columns": [ + "sizes_small_filename" + ], + "isUnique": false + }, + "media_sizes_medium_sizes_medium_filename_idx": { + "name": "media_sizes_medium_sizes_medium_filename_idx", + "columns": [ + "sizes_medium_filename" + ], + "isUnique": false + }, + "media_sizes_large_sizes_large_filename_idx": { + "name": "media_sizes_large_sizes_large_filename_idx", + "columns": [ + "sizes_large_filename" + ], + "isUnique": false + }, + "media_sizes_xlarge_sizes_xlarge_filename_idx": { + "name": "media_sizes_xlarge_sizes_xlarge_filename_idx", + "columns": [ + "sizes_xlarge_filename" + ], + "isUnique": false + }, + "media_sizes_og_sizes_og_filename_idx": { + "name": "media_sizes_og_sizes_og_filename_idx", + "columns": [ + "sizes_og_filename" + ], + "isUnique": false + } + }, + "foreignKeys": { + "media_folder_id_payload_folders_id_fk": { + "name": "media_folder_id_payload_folders_id_fk", + "tableFrom": "media", + "tableTo": "payload_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "categories_breadcrumbs": { + "name": "categories_breadcrumbs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "doc_id": { + "name": "doc_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "url": { + "name": "url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "categories_breadcrumbs_order_idx": { + "name": "categories_breadcrumbs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "categories_breadcrumbs_parent_id_idx": { + "name": "categories_breadcrumbs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "categories_breadcrumbs_doc_idx": { + "name": "categories_breadcrumbs_doc_idx", + "columns": [ + "doc_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "categories_breadcrumbs_doc_id_categories_id_fk": { + "name": "categories_breadcrumbs_doc_id_categories_id_fk", + "tableFrom": "categories_breadcrumbs", + "tableTo": "categories", + "columnsFrom": [ + "doc_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "categories_breadcrumbs_parent_id_fk": { + "name": "categories_breadcrumbs_parent_id_fk", + "tableFrom": "categories_breadcrumbs", + "tableTo": "categories", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "categories": { + "name": "categories", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "categories_slug_idx": { + "name": "categories_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "categories_parent_idx": { + "name": "categories_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "categories_updated_at_idx": { + "name": "categories_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "categories_created_at_idx": { + "name": "categories_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "categories_parent_id_categories_id_fk": { + "name": "categories_parent_id_categories_id_fk", + "tableFrom": "categories", + "tableTo": "categories", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "users_sessions": { + "name": "users_sessions", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "expires_at": { + "name": "expires_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "users_sessions_order_idx": { + "name": "users_sessions_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "users_sessions_parent_id_idx": { + "name": "users_sessions_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "users_sessions_parent_id_fk": { + "name": "users_sessions_parent_id_fk", + "tableFrom": "users_sessions", + "tableTo": "users", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "users": { + "name": "users", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "reset_password_token": { + "name": "reset_password_token", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "reset_password_expiration": { + "name": "reset_password_expiration", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "salt": { + "name": "salt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hash": { + "name": "hash", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "login_attempts": { + "name": "login_attempts", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0 + }, + "lock_until": { + "name": "lock_until", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "users_updated_at_idx": { + "name": "users_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "users_created_at_idx": { + "name": "users_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "users_email_idx": { + "name": "users_email_idx", + "columns": [ + "email" + ], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "redirects": { + "name": "redirects", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "from": { + "name": "from", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "to_type": { + "name": "to_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "to_url": { + "name": "to_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "redirects_from_idx": { + "name": "redirects_from_idx", + "columns": [ + "from" + ], + "isUnique": true + }, + "redirects_updated_at_idx": { + "name": "redirects_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "redirects_created_at_idx": { + "name": "redirects_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "redirects_rels": { + "name": "redirects_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "redirects_rels_order_idx": { + "name": "redirects_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "redirects_rels_parent_idx": { + "name": "redirects_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "redirects_rels_path_idx": { + "name": "redirects_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "redirects_rels_pages_id_idx": { + "name": "redirects_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "redirects_rels_posts_id_idx": { + "name": "redirects_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "redirects_rels_parent_fk": { + "name": "redirects_rels_parent_fk", + "tableFrom": "redirects_rels", + "tableTo": "redirects", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "redirects_rels_pages_fk": { + "name": "redirects_rels_pages_fk", + "tableFrom": "redirects_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "redirects_rels_posts_fk": { + "name": "redirects_rels_posts_fk", + "tableFrom": "redirects_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_checkbox": { + "name": "forms_blocks_checkbox", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_checkbox_order_idx": { + "name": "forms_blocks_checkbox_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_checkbox_parent_id_idx": { + "name": "forms_blocks_checkbox_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_checkbox_path_idx": { + "name": "forms_blocks_checkbox_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_checkbox_parent_id_fk": { + "name": "forms_blocks_checkbox_parent_id_fk", + "tableFrom": "forms_blocks_checkbox", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_country": { + "name": "forms_blocks_country", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_country_order_idx": { + "name": "forms_blocks_country_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_country_parent_id_idx": { + "name": "forms_blocks_country_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_country_path_idx": { + "name": "forms_blocks_country_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_country_parent_id_fk": { + "name": "forms_blocks_country_parent_id_fk", + "tableFrom": "forms_blocks_country", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_email": { + "name": "forms_blocks_email", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_email_order_idx": { + "name": "forms_blocks_email_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_email_parent_id_idx": { + "name": "forms_blocks_email_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_email_path_idx": { + "name": "forms_blocks_email_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_email_parent_id_fk": { + "name": "forms_blocks_email_parent_id_fk", + "tableFrom": "forms_blocks_email", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_message": { + "name": "forms_blocks_message", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_message_order_idx": { + "name": "forms_blocks_message_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_message_parent_id_idx": { + "name": "forms_blocks_message_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_message_path_idx": { + "name": "forms_blocks_message_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_message_parent_id_fk": { + "name": "forms_blocks_message_parent_id_fk", + "tableFrom": "forms_blocks_message", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_number": { + "name": "forms_blocks_number", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_number_order_idx": { + "name": "forms_blocks_number_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_number_parent_id_idx": { + "name": "forms_blocks_number_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_number_path_idx": { + "name": "forms_blocks_number_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_number_parent_id_fk": { + "name": "forms_blocks_number_parent_id_fk", + "tableFrom": "forms_blocks_number", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_select_options": { + "name": "forms_blocks_select_options", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_select_options_order_idx": { + "name": "forms_blocks_select_options_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_select_options_parent_id_idx": { + "name": "forms_blocks_select_options_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_select_options_parent_id_fk": { + "name": "forms_blocks_select_options_parent_id_fk", + "tableFrom": "forms_blocks_select_options", + "tableTo": "forms_blocks_select", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_select": { + "name": "forms_blocks_select", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "placeholder": { + "name": "placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_select_order_idx": { + "name": "forms_blocks_select_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_select_parent_id_idx": { + "name": "forms_blocks_select_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_select_path_idx": { + "name": "forms_blocks_select_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_select_parent_id_fk": { + "name": "forms_blocks_select_parent_id_fk", + "tableFrom": "forms_blocks_select", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_state": { + "name": "forms_blocks_state", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_state_order_idx": { + "name": "forms_blocks_state_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_state_parent_id_idx": { + "name": "forms_blocks_state_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_state_path_idx": { + "name": "forms_blocks_state_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_state_parent_id_fk": { + "name": "forms_blocks_state_parent_id_fk", + "tableFrom": "forms_blocks_state", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_text": { + "name": "forms_blocks_text", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_text_order_idx": { + "name": "forms_blocks_text_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_text_parent_id_idx": { + "name": "forms_blocks_text_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_text_path_idx": { + "name": "forms_blocks_text_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_text_parent_id_fk": { + "name": "forms_blocks_text_parent_id_fk", + "tableFrom": "forms_blocks_text", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_blocks_textarea": { + "name": "forms_blocks_textarea", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "default_value": { + "name": "default_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "required": { + "name": "required", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_blocks_textarea_order_idx": { + "name": "forms_blocks_textarea_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_blocks_textarea_parent_id_idx": { + "name": "forms_blocks_textarea_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "forms_blocks_textarea_path_idx": { + "name": "forms_blocks_textarea_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_blocks_textarea_parent_id_fk": { + "name": "forms_blocks_textarea_parent_id_fk", + "tableFrom": "forms_blocks_textarea", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms_emails": { + "name": "forms_emails", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "email_to": { + "name": "email_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cc": { + "name": "cc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bcc": { + "name": "bcc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "reply_to": { + "name": "reply_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "email_from": { + "name": "email_from", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "subject": { + "name": "subject", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'You''ve received a new message.'" + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "forms_emails_order_idx": { + "name": "forms_emails_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "forms_emails_parent_id_idx": { + "name": "forms_emails_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "forms_emails_parent_id_fk": { + "name": "forms_emails_parent_id_fk", + "tableFrom": "forms_emails", + "tableTo": "forms", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "forms": { + "name": "forms", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "submit_button_label": { + "name": "submit_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "confirmation_type": { + "name": "confirmation_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'message'" + }, + "confirmation_message": { + "name": "confirmation_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "redirect_url": { + "name": "redirect_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "forms_updated_at_idx": { + "name": "forms_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "forms_created_at_idx": { + "name": "forms_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_submissions_submission_data": { + "name": "form_submissions_submission_data", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "field": { + "name": "field", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "form_submissions_submission_data_order_idx": { + "name": "form_submissions_submission_data_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "form_submissions_submission_data_parent_id_idx": { + "name": "form_submissions_submission_data_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_submissions_submission_data_parent_id_fk": { + "name": "form_submissions_submission_data_parent_id_fk", + "tableFrom": "form_submissions_submission_data", + "tableTo": "form_submissions", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_submissions": { + "name": "form_submissions", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "form_id": { + "name": "form_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "form_submissions_form_idx": { + "name": "form_submissions_form_idx", + "columns": [ + "form_id" + ], + "isUnique": false + }, + "form_submissions_updated_at_idx": { + "name": "form_submissions_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "form_submissions_created_at_idx": { + "name": "form_submissions_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_submissions_form_id_forms_id_fk": { + "name": "form_submissions_form_id_forms_id_fk", + "tableFrom": "form_submissions", + "tableTo": "forms", + "columnsFrom": [ + "form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "search_categories": { + "name": "search_categories", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "relation_to": { + "name": "relation_to", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category_i_d": { + "name": "category_i_d", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "search_categories_order_idx": { + "name": "search_categories_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "search_categories_parent_id_idx": { + "name": "search_categories_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "search_categories_parent_id_fk": { + "name": "search_categories_parent_id_fk", + "tableFrom": "search_categories", + "tableTo": "search", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "search": { + "name": "search", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "priority": { + "name": "priority", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "search_slug_idx": { + "name": "search_slug_idx", + "columns": [ + "slug" + ], + "isUnique": false + }, + "search_meta_meta_image_idx": { + "name": "search_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "search_updated_at_idx": { + "name": "search_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "search_created_at_idx": { + "name": "search_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "search_meta_image_id_media_id_fk": { + "name": "search_meta_image_id_media_id_fk", + "tableFrom": "search", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "search_rels": { + "name": "search_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "search_rels_order_idx": { + "name": "search_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "search_rels_parent_idx": { + "name": "search_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "search_rels_path_idx": { + "name": "search_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "search_rels_posts_id_idx": { + "name": "search_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "search_rels_parent_fk": { + "name": "search_rels_parent_fk", + "tableFrom": "search_rels", + "tableTo": "search", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_posts_fk": { + "name": "search_rels_posts_fk", + "tableFrom": "search_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_kv": { + "name": "payload_kv", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "data": { + "name": "data", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "payload_kv_key_idx": { + "name": "payload_kv_key_idx", + "columns": [ + "key" + ], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_jobs_log": { + "name": "payload_jobs_log", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "executed_at": { + "name": "executed_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "completed_at": { + "name": "completed_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "task_slug": { + "name": "task_slug", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "task_i_d": { + "name": "task_i_d", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "input": { + "name": "input", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "output": { + "name": "output", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "state": { + "name": "state", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_jobs_log_order_idx": { + "name": "payload_jobs_log_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "payload_jobs_log_parent_id_idx": { + "name": "payload_jobs_log_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_jobs_log_parent_id_fk": { + "name": "payload_jobs_log_parent_id_fk", + "tableFrom": "payload_jobs_log", + "tableTo": "payload_jobs", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_jobs": { + "name": "payload_jobs", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "input": { + "name": "input", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "completed_at": { + "name": "completed_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "total_tried": { + "name": "total_tried", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0 + }, + "has_error": { + "name": "has_error", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "task_slug": { + "name": "task_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "queue": { + "name": "queue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "wait_until": { + "name": "wait_until", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "processing": { + "name": "processing", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_jobs_completed_at_idx": { + "name": "payload_jobs_completed_at_idx", + "columns": [ + "completed_at" + ], + "isUnique": false + }, + "payload_jobs_total_tried_idx": { + "name": "payload_jobs_total_tried_idx", + "columns": [ + "total_tried" + ], + "isUnique": false + }, + "payload_jobs_has_error_idx": { + "name": "payload_jobs_has_error_idx", + "columns": [ + "has_error" + ], + "isUnique": false + }, + "payload_jobs_task_slug_idx": { + "name": "payload_jobs_task_slug_idx", + "columns": [ + "task_slug" + ], + "isUnique": false + }, + "payload_jobs_queue_idx": { + "name": "payload_jobs_queue_idx", + "columns": [ + "queue" + ], + "isUnique": false + }, + "payload_jobs_wait_until_idx": { + "name": "payload_jobs_wait_until_idx", + "columns": [ + "wait_until" + ], + "isUnique": false + }, + "payload_jobs_processing_idx": { + "name": "payload_jobs_processing_idx", + "columns": [ + "processing" + ], + "isUnique": false + }, + "payload_jobs_updated_at_idx": { + "name": "payload_jobs_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_jobs_created_at_idx": { + "name": "payload_jobs_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_folders_folder_type": { + "name": "payload_folders_folder_type", + "columns": { + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "payload_folders_folder_type_order_idx": { + "name": "payload_folders_folder_type_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_folders_folder_type_parent_idx": { + "name": "payload_folders_folder_type_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_folders_folder_type_parent_fk": { + "name": "payload_folders_folder_type_parent_fk", + "tableFrom": "payload_folders_folder_type", + "tableTo": "payload_folders", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_folders": { + "name": "payload_folders", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "folder_id": { + "name": "folder_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_folders_name_idx": { + "name": "payload_folders_name_idx", + "columns": [ + "name" + ], + "isUnique": false + }, + "payload_folders_folder_idx": { + "name": "payload_folders_folder_idx", + "columns": [ + "folder_id" + ], + "isUnique": false + }, + "payload_folders_updated_at_idx": { + "name": "payload_folders_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_folders_created_at_idx": { + "name": "payload_folders_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_folders_folder_id_payload_folders_id_fk": { + "name": "payload_folders_folder_id_payload_folders_id_fk", + "tableFrom": "payload_folders", + "tableTo": "payload_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_locked_documents": { + "name": "payload_locked_documents", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "global_slug": { + "name": "global_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_locked_documents_global_slug_idx": { + "name": "payload_locked_documents_global_slug_idx", + "columns": [ + "global_slug" + ], + "isUnique": false + }, + "payload_locked_documents_updated_at_idx": { + "name": "payload_locked_documents_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_locked_documents_created_at_idx": { + "name": "payload_locked_documents_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_locked_documents_rels": { + "name": "payload_locked_documents_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "events_id": { + "name": "events_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "partners_id": { + "name": "partners_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "categories_id": { + "name": "categories_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "redirects_id": { + "name": "redirects_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "forms_id": { + "name": "forms_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "form_submissions_id": { + "name": "form_submissions_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "search_id": { + "name": "search_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "payload_folders_id": { + "name": "payload_folders_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_locked_documents_rels_order_idx": { + "name": "payload_locked_documents_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_locked_documents_rels_parent_idx": { + "name": "payload_locked_documents_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_path_idx": { + "name": "payload_locked_documents_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "payload_locked_documents_rels_pages_id_idx": { + "name": "payload_locked_documents_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_posts_id_idx": { + "name": "payload_locked_documents_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_events_id_idx": { + "name": "payload_locked_documents_rels_events_id_idx", + "columns": [ + "events_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_preistraeger_id_idx": { + "name": "payload_locked_documents_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_partners_id_idx": { + "name": "payload_locked_documents_rels_partners_id_idx", + "columns": [ + "partners_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_media_id_idx": { + "name": "payload_locked_documents_rels_media_id_idx", + "columns": [ + "media_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_categories_id_idx": { + "name": "payload_locked_documents_rels_categories_id_idx", + "columns": [ + "categories_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_users_id_idx": { + "name": "payload_locked_documents_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_redirects_id_idx": { + "name": "payload_locked_documents_rels_redirects_id_idx", + "columns": [ + "redirects_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_forms_id_idx": { + "name": "payload_locked_documents_rels_forms_id_idx", + "columns": [ + "forms_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_form_submissions_id_idx": { + "name": "payload_locked_documents_rels_form_submissions_id_idx", + "columns": [ + "form_submissions_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_search_id_idx": { + "name": "payload_locked_documents_rels_search_id_idx", + "columns": [ + "search_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_payload_folders_id_idx": { + "name": "payload_locked_documents_rels_payload_folders_id_idx", + "columns": [ + "payload_folders_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_locked_documents_rels_parent_fk": { + "name": "payload_locked_documents_rels_parent_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_locked_documents", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_pages_fk": { + "name": "payload_locked_documents_rels_pages_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_posts_fk": { + "name": "payload_locked_documents_rels_posts_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_events_fk": { + "name": "payload_locked_documents_rels_events_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "events", + "columnsFrom": [ + "events_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_preistraeger_fk": { + "name": "payload_locked_documents_rels_preistraeger_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_partners_fk": { + "name": "payload_locked_documents_rels_partners_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "partners", + "columnsFrom": [ + "partners_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_media_fk": { + "name": "payload_locked_documents_rels_media_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_categories_fk": { + "name": "payload_locked_documents_rels_categories_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "categories", + "columnsFrom": [ + "categories_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_users_fk": { + "name": "payload_locked_documents_rels_users_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_redirects_fk": { + "name": "payload_locked_documents_rels_redirects_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "redirects", + "columnsFrom": [ + "redirects_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_forms_fk": { + "name": "payload_locked_documents_rels_forms_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "forms", + "columnsFrom": [ + "forms_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_form_submissions_fk": { + "name": "payload_locked_documents_rels_form_submissions_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "form_submissions", + "columnsFrom": [ + "form_submissions_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_search_fk": { + "name": "payload_locked_documents_rels_search_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "search", + "columnsFrom": [ + "search_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_payload_folders_fk": { + "name": "payload_locked_documents_rels_payload_folders_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_folders", + "columnsFrom": [ + "payload_folders_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_preferences": { + "name": "payload_preferences", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_preferences_key_idx": { + "name": "payload_preferences_key_idx", + "columns": [ + "key" + ], + "isUnique": false + }, + "payload_preferences_updated_at_idx": { + "name": "payload_preferences_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_preferences_created_at_idx": { + "name": "payload_preferences_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_preferences_rels": { + "name": "payload_preferences_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_preferences_rels_order_idx": { + "name": "payload_preferences_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_preferences_rels_parent_idx": { + "name": "payload_preferences_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "payload_preferences_rels_path_idx": { + "name": "payload_preferences_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "payload_preferences_rels_users_id_idx": { + "name": "payload_preferences_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_preferences_rels_parent_fk": { + "name": "payload_preferences_rels_parent_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "payload_preferences", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_preferences_rels_users_fk": { + "name": "payload_preferences_rels_users_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_migrations": { + "name": "payload_migrations", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "batch": { + "name": "batch", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_migrations_updated_at_idx": { + "name": "payload_migrations_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_migrations_created_at_idx": { + "name": "payload_migrations_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_nav_items_sub": { + "name": "header_nav_items_sub", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_nav_items_sub_order_idx": { + "name": "header_nav_items_sub_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_nav_items_sub_parent_id_idx": { + "name": "header_nav_items_sub_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_nav_items_sub_parent_id_fk": { + "name": "header_nav_items_sub_parent_id_fk", + "tableFrom": "header_nav_items_sub", + "tableTo": "header_nav_items", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_nav_items": { + "name": "header_nav_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "sub_label": { + "name": "sub_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "header_nav_items_order_idx": { + "name": "header_nav_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_nav_items_parent_id_idx": { + "name": "header_nav_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_nav_items_parent_id_fk": { + "name": "header_nav_items_parent_id_fk", + "tableFrom": "header_nav_items", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_secondary_links": { + "name": "header_secondary_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_secondary_links_order_idx": { + "name": "header_secondary_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_secondary_links_parent_id_idx": { + "name": "header_secondary_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_secondary_links_parent_id_fk": { + "name": "header_secondary_links_parent_id_fk", + "tableFrom": "header_secondary_links", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_ctas": { + "name": "header_ctas", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "variant": { + "name": "variant", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'primary'" + } + }, + "indexes": { + "header_ctas_order_idx": { + "name": "header_ctas_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_ctas_parent_id_idx": { + "name": "header_ctas_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_ctas_parent_id_fk": { + "name": "header_ctas_parent_id_fk", + "tableFrom": "header_ctas", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_social_links": { + "name": "header_social_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_social_links_order_idx": { + "name": "header_social_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_social_links_parent_id_idx": { + "name": "header_social_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_social_links_parent_id_fk": { + "name": "header_social_links_parent_id_fk", + "tableFrom": "header_social_links", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header": { + "name": "header", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "overlay_logo_alt": { + "name": "overlay_logo_alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'BMP Logo'" + }, + "overlay_kicker": { + "name": "overlay_kicker", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "overlay_headline": { + "name": "overlay_headline", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'EXZELLENZ HAT\nEINEN NAMEN.'" + }, + "mobile_watermark": { + "name": "mobile_watermark", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Exzellenz\nseit 2005'" + }, + "menu_label": { + "name": "menu_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Menü'" + }, + "open_label": { + "name": "open_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Navigation öffnen'" + }, + "close_label": { + "name": "close_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Menü schließen'" + }, + "dialog_label": { + "name": "dialog_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Navigation'" + }, + "overview_label": { + "name": "overview_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Überblick'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "header_logo_idx": { + "name": "header_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_logo_id_media_id_fk": { + "name": "header_logo_id_media_id_fk", + "tableFrom": "header", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_ctas": { + "name": "footer_ctas", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "variant": { + "name": "variant", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'primary'" + } + }, + "indexes": { + "footer_ctas_order_idx": { + "name": "footer_ctas_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_ctas_parent_id_idx": { + "name": "footer_ctas_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_ctas_parent_id_fk": { + "name": "footer_ctas_parent_id_fk", + "tableFrom": "footer_ctas", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_link_columns_links": { + "name": "footer_link_columns_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_link_columns_links_order_idx": { + "name": "footer_link_columns_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_link_columns_links_parent_id_idx": { + "name": "footer_link_columns_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_link_columns_links_parent_id_fk": { + "name": "footer_link_columns_links_parent_id_fk", + "tableFrom": "footer_link_columns_links", + "tableTo": "footer_link_columns", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_link_columns": { + "name": "footer_link_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_link_columns_order_idx": { + "name": "footer_link_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_link_columns_parent_id_idx": { + "name": "footer_link_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_link_columns_parent_id_fk": { + "name": "footer_link_columns_parent_id_fk", + "tableFrom": "footer_link_columns", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_partner_logos": { + "name": "footer_partner_logos", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "alt": { + "name": "alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_partner_logos_order_idx": { + "name": "footer_partner_logos_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_partner_logos_parent_id_idx": { + "name": "footer_partner_logos_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "footer_partner_logos_image_idx": { + "name": "footer_partner_logos_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_partner_logos_image_id_media_id_fk": { + "name": "footer_partner_logos_image_id_media_id_fk", + "tableFrom": "footer_partner_logos", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "footer_partner_logos_parent_id_fk": { + "name": "footer_partner_logos_parent_id_fk", + "tableFrom": "footer_partner_logos", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_social_links": { + "name": "footer_social_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_social_links_order_idx": { + "name": "footer_social_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_social_links_parent_id_idx": { + "name": "footer_social_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_social_links_parent_id_fk": { + "name": "footer_social_links_parent_id_fk", + "tableFrom": "footer_social_links", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer": { + "name": "footer", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "headline_prefix": { + "name": "headline_prefix", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Der Preis des'" + }, + "headline_accent": { + "name": "headline_accent", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischen'" + }, + "headline_suffix": { + "name": "headline_suffix", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Mittelstands'" + }, + "since_label": { + "name": "since_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Exzellenz seit 2005'" + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'2026'" + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Die renommierteste Auszeichnung für herausragende Unternehmen des bayerischen Mittelstands.'" + }, + "copyright": { + "name": "copyright", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'© 2026 Bayerischer Mittelstandspreis · Alle Rechte vorbehalten'" + }, + "partner_label": { + "name": "partner_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Partner'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "footer_logo_idx": { + "name": "footer_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_logo_id_media_id_fk": { + "name": "footer_logo_id_media_id_fk", + "tableFrom": "footer", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "site_settings": { + "name": "site_settings", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "skyline_image_id": { + "name": "skyline_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generic_page_kicker": { + "name": "generic_page_kicker", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'CMS'" + }, + "generic_page_title": { + "name": "generic_page_title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Seite'" + }, + "generic_page_description": { + "name": "generic_page_description", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Diese Route wird aus Payload CMS geladen. Ergänze Inhalte im entsprechenden Collection-Dokument.'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "site_settings_skyline_image_idx": { + "name": "site_settings_skyline_image_idx", + "columns": [ + "skyline_image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "site_settings_skyline_image_id_media_id_fk": { + "name": "site_settings_skyline_image_id_media_id_fk", + "tableFrom": "site_settings", + "tableTo": "media", + "columnsFrom": [ + "skyline_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "application_phase_phases": { + "name": "application_phase_phases", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "pulse": { + "name": "pulse", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "phase": { + "name": "phase", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "headline": { + "name": "headline", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "accent": { + "name": "accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bg": { + "name": "bg", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "glow": { + "name": "glow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta": { + "name": "meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "success_applications": { + "name": "success_applications", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "success_winners": { + "name": "success_winners", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "membership_cta_label": { + "name": "membership_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "membership_cta_url": { + "name": "membership_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + } + }, + "indexes": { + "application_phase_phases_order_idx": { + "name": "application_phase_phases_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "application_phase_phases_parent_id_idx": { + "name": "application_phase_phases_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "application_phase_phases_parent_id_fk": { + "name": "application_phase_phases_parent_id_fk", + "tableFrom": "application_phase_phases", + "tableTo": "application_phase", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "application_phase": { + "name": "application_phase", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "active_phase": { + "name": "active_phase", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'0'" + }, + "no_action_label": { + "name": "no_action_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kein Handlungsbedarf'" + }, + "success_applications_label": { + "name": "success_applications_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungen'" + }, + "success_winners_label": { + "name": "success_winners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + } + }, + "views": {}, + "enums": {}, + "_meta": { + "tables": {}, + "columns": {} + }, + "internal": { + "indexes": {} + }, + "id": "96548002-5dec-4be5-9676-8f2417372745", + "prevId": "00000000-0000-0000-0000-000000000000" +} \ No newline at end of file diff --git a/src/migrations/20260630_175614_partners_collection.ts b/src/migrations/20260630_175614_partners_collection.ts new file mode 100644 index 0000000..f816d48 --- /dev/null +++ b/src/migrations/20260630_175614_partners_collection.ts @@ -0,0 +1,367 @@ +import { type MigrateUpArgs, type MigrateDownArgs, sql } from '@payloadcms/db-sqlite' + +export async function up({ db, payload: _payload, req: _req }: MigrateUpArgs): Promise { + await db.run(sql`CREATE TABLE \`partners\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`name\` text, + \`stable_id\` text, + \`role\` text, + \`tier\` numeric DEFAULT 3, + \`sort_order\` numeric DEFAULT 100, + \`active\` integer DEFAULT true, + \`show_on_homepage\` integer DEFAULT true, + \`logo_id\` integer, + \`logo_alt\` text, + \`logo_kind\` text DEFAULT 'text', + \`logo_text\` text, + \`logo_subtext\` text, + \`logo_color\` text, + \`desc\` text, + \`full_desc\` text, + \`industry\` text, + \`location\` text, + \`website\` text, + \`linkedin\` text, + \`hero_img\` text, + \`published_at\` text, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`_status\` text DEFAULT 'draft', + FOREIGN KEY (\`logo_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`CREATE UNIQUE INDEX \`partners_stable_id_idx\` ON \`partners\` (\`stable_id\`);`) + await db.run(sql`CREATE INDEX \`partners_logo_idx\` ON \`partners\` (\`logo_id\`);`) + await db.run(sql`CREATE INDEX \`partners_updated_at_idx\` ON \`partners\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`partners_created_at_idx\` ON \`partners\` (\`created_at\`);`) + await db.run(sql`CREATE INDEX \`partners__status_idx\` ON \`partners\` (\`_status\`);`) + await db.run(sql`INSERT INTO \`partners\` ( + \`name\`, + \`stable_id\`, + \`role\`, + \`tier\`, + \`sort_order\`, + \`active\`, + \`show_on_homepage\`, + \`logo_id\`, + \`logo_alt\`, + \`logo_kind\`, + \`logo_text\`, + \`logo_subtext\`, + \`logo_color\`, + \`desc\`, + \`full_desc\`, + \`industry\`, + \`location\`, + \`website\`, + \`linkedin\`, + \`hero_img\`, + \`published_at\`, + \`updated_at\`, + \`created_at\`, + \`_status\` + ) + SELECT + \`network_partners\`.\`name\`, + COALESCE(\`network_partners\`.\`stable_id\`, lower(hex(randomblob(8)))), + \`network_partners\`.\`role\`, + \`network_partners\`.\`tier\`, + \`network_partners\`.\`_order\`, + true, + true, + \`network_partners\`.\`logo_id\`, + \`network_partners\`.\`logo_alt\`, + \`network_partners\`.\`logo_kind\`, + \`network_partners\`.\`logo_text\`, + \`network_partners\`.\`logo_subtext\`, + \`network_partners\`.\`logo_color\`, + \`network_partners\`.\`desc\`, + \`network_partners\`.\`full_desc\`, + \`network_partners\`.\`industry\`, + \`network_partners\`.\`location\`, + \`network_partners\`.\`website\`, + \`network_partners\`.\`linkedin\`, + \`network_partners\`.\`hero_img\`, + COALESCE(\`pages\`.\`published_at\`, strftime('%Y-%m-%dT%H:%M:%fZ', 'now')), + strftime('%Y-%m-%dT%H:%M:%fZ', 'now'), + strftime('%Y-%m-%dT%H:%M:%fZ', 'now'), + 'published' + FROM \`network_partners\` + LEFT JOIN \`pages\` ON \`pages\`.\`id\` = \`network_partners\`.\`_parent_id\` + WHERE \`network_partners\`.\`_parent_id\` = COALESCE( + (SELECT \`id\` FROM \`pages\` WHERE \`spa_path\` = '/netzwerk' OR \`slug\` IN ('netzwerk', 'network') ORDER BY \`id\` LIMIT 1), + (SELECT MIN(\`_parent_id\`) FROM \`network_partners\`) + ) + ORDER BY \`network_partners\`.\`_order\`;`) + await db.run(sql`CREATE TABLE \`_partners_v\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`parent_id\` integer, + \`version_name\` text, + \`version_stable_id\` text, + \`version_role\` text, + \`version_tier\` numeric DEFAULT 3, + \`version_sort_order\` numeric DEFAULT 100, + \`version_active\` integer DEFAULT true, + \`version_show_on_homepage\` integer DEFAULT true, + \`version_logo_id\` integer, + \`version_logo_alt\` text, + \`version_logo_kind\` text DEFAULT 'text', + \`version_logo_text\` text, + \`version_logo_subtext\` text, + \`version_logo_color\` text, + \`version_desc\` text, + \`version_full_desc\` text, + \`version_industry\` text, + \`version_location\` text, + \`version_website\` text, + \`version_linkedin\` text, + \`version_hero_img\` text, + \`version_published_at\` text, + \`version_updated_at\` text, + \`version_created_at\` text, + \`version__status\` text DEFAULT 'draft', + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`latest\` integer, + \`autosave\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`partners\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_logo_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`CREATE INDEX \`_partners_v_parent_idx\` ON \`_partners_v\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_version_version_stable_id_idx\` ON \`_partners_v\` (\`version_stable_id\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_version_version_logo_idx\` ON \`_partners_v\` (\`version_logo_id\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_version_version_updated_at_idx\` ON \`_partners_v\` (\`version_updated_at\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_version_version_created_at_idx\` ON \`_partners_v\` (\`version_created_at\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_version_version__status_idx\` ON \`_partners_v\` (\`version__status\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_created_at_idx\` ON \`_partners_v\` (\`created_at\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_updated_at_idx\` ON \`_partners_v\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_latest_idx\` ON \`_partners_v\` (\`latest\`);`) + await db.run(sql`CREATE INDEX \`_partners_v_autosave_idx\` ON \`_partners_v\` (\`autosave\`);`) + await db.run(sql`INSERT INTO \`_partners_v\` ( + \`parent_id\`, + \`version_name\`, + \`version_stable_id\`, + \`version_role\`, + \`version_tier\`, + \`version_sort_order\`, + \`version_active\`, + \`version_show_on_homepage\`, + \`version_logo_id\`, + \`version_logo_alt\`, + \`version_logo_kind\`, + \`version_logo_text\`, + \`version_logo_subtext\`, + \`version_logo_color\`, + \`version_desc\`, + \`version_full_desc\`, + \`version_industry\`, + \`version_location\`, + \`version_website\`, + \`version_linkedin\`, + \`version_hero_img\`, + \`version_published_at\`, + \`version_updated_at\`, + \`version_created_at\`, + \`version__status\`, + \`created_at\`, + \`updated_at\`, + \`latest\`, + \`autosave\` + ) + SELECT + \`id\`, + \`name\`, + \`stable_id\`, + \`role\`, + \`tier\`, + \`sort_order\`, + \`active\`, + \`show_on_homepage\`, + \`logo_id\`, + \`logo_alt\`, + \`logo_kind\`, + \`logo_text\`, + \`logo_subtext\`, + \`logo_color\`, + \`desc\`, + \`full_desc\`, + \`industry\`, + \`location\`, + \`website\`, + \`linkedin\`, + \`hero_img\`, + \`published_at\`, + \`updated_at\`, + \`created_at\`, + \`_status\`, + \`created_at\`, + \`updated_at\`, + true, + false + FROM \`partners\` + ORDER BY \`sort_order\`, \`id\`;`) + await db.run(sql`DROP TABLE \`network_partners\`;`) + await db.run(sql`DROP TABLE \`_network_partners_v\`;`) + await db.run(sql`ALTER TABLE \`payload_locked_documents_rels\` ADD \`partners_id\` integer REFERENCES partners(id);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_partners_id_idx\` ON \`payload_locked_documents_rels\` (\`partners_id\`);`) +} + +export async function down({ db, payload: _payload, req: _req }: MigrateDownArgs): Promise { + await db.run(sql`CREATE TABLE \`network_partners\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`stable_id\` text, + \`name\` text, + \`role\` text, + \`tier\` numeric, + \`desc\` text, + \`full_desc\` text, + \`logo_id\` integer, + \`logo_alt\` text, + \`logo_kind\` text DEFAULT 'text', + \`logo_text\` text, + \`logo_subtext\` text, + \`logo_color\` text, + \`industry\` text, + \`location\` text, + \`website\` text, + \`linkedin\` text, + \`hero_img\` text, + FOREIGN KEY (\`logo_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`network_partners_order_idx\` ON \`network_partners\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`network_partners_parent_id_idx\` ON \`network_partners\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`network_partners_logo_idx\` ON \`network_partners\` (\`logo_id\`);`) + await db.run(sql`INSERT INTO \`network_partners\` ( + \`_order\`, + \`_parent_id\`, + \`id\`, + \`stable_id\`, + \`name\`, + \`role\`, + \`tier\`, + \`desc\`, + \`full_desc\`, + \`logo_id\`, + \`logo_alt\`, + \`logo_kind\`, + \`logo_text\`, + \`logo_subtext\`, + \`logo_color\`, + \`industry\`, + \`location\`, + \`website\`, + \`linkedin\`, + \`hero_img\` + ) + SELECT + COALESCE(\`partners\`.\`sort_order\`, 100), + (SELECT \`id\` FROM \`pages\` WHERE \`spa_path\` = '/netzwerk' OR \`slug\` IN ('netzwerk', 'network') ORDER BY \`id\` LIMIT 1), + lower(hex(randomblob(12))), + \`partners\`.\`stable_id\`, + \`partners\`.\`name\`, + \`partners\`.\`role\`, + \`partners\`.\`tier\`, + \`partners\`.\`desc\`, + \`partners\`.\`full_desc\`, + \`partners\`.\`logo_id\`, + \`partners\`.\`logo_alt\`, + \`partners\`.\`logo_kind\`, + \`partners\`.\`logo_text\`, + \`partners\`.\`logo_subtext\`, + \`partners\`.\`logo_color\`, + \`partners\`.\`industry\`, + \`partners\`.\`location\`, + \`partners\`.\`website\`, + \`partners\`.\`linkedin\`, + \`partners\`.\`hero_img\` + FROM \`partners\` + ORDER BY \`partners\`.\`sort_order\`, \`partners\`.\`id\`;`) + await db.run(sql`CREATE TABLE \`_network_partners_v\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` integer PRIMARY KEY NOT NULL, + \`stable_id\` text, + \`name\` text, + \`role\` text, + \`tier\` numeric, + \`desc\` text, + \`full_desc\` text, + \`logo_id\` integer, + \`logo_alt\` text, + \`logo_kind\` text DEFAULT 'text', + \`logo_text\` text, + \`logo_subtext\` text, + \`logo_color\` text, + \`industry\` text, + \`location\` text, + \`website\` text, + \`linkedin\` text, + \`hero_img\` text, + \`_uuid\` text, + FOREIGN KEY (\`logo_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`_pages_v\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`_network_partners_v_order_idx\` ON \`_network_partners_v\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`_network_partners_v_parent_id_idx\` ON \`_network_partners_v\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`_network_partners_v_logo_idx\` ON \`_network_partners_v\` (\`logo_id\`);`) + await db.run(sql`DROP TABLE \`partners\`;`) + await db.run(sql`DROP TABLE \`_partners_v\`;`) + await db.run(sql`PRAGMA foreign_keys=OFF;`) + await db.run(sql`CREATE TABLE \`__new_payload_locked_documents_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`pages_id\` integer, + \`posts_id\` integer, + \`events_id\` integer, + \`preistraeger_id\` integer, + \`media_id\` integer, + \`categories_id\` integer, + \`users_id\` integer, + \`redirects_id\` integer, + \`forms_id\` integer, + \`form_submissions_id\` integer, + \`search_id\` integer, + \`payload_folders_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`payload_locked_documents\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`pages_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`events_id\`) REFERENCES \`events\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`preistraeger_id\`) REFERENCES \`preistraeger\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`media_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`categories_id\`) REFERENCES \`categories\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`users_id\`) REFERENCES \`users\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`redirects_id\`) REFERENCES \`redirects\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`forms_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`form_submissions_id\`) REFERENCES \`form_submissions\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`search_id\`) REFERENCES \`search\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`payload_folders_id\`) REFERENCES \`payload_folders\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new_payload_locked_documents_rels\`("id", "order", "parent_id", "path", "pages_id", "posts_id", "events_id", "preistraeger_id", "media_id", "categories_id", "users_id", "redirects_id", "forms_id", "form_submissions_id", "search_id", "payload_folders_id") SELECT "id", "order", "parent_id", "path", "pages_id", "posts_id", "events_id", "preistraeger_id", "media_id", "categories_id", "users_id", "redirects_id", "forms_id", "form_submissions_id", "search_id", "payload_folders_id" FROM \`payload_locked_documents_rels\`;`) + await db.run(sql`DROP TABLE \`payload_locked_documents_rels\`;`) + await db.run(sql`ALTER TABLE \`__new_payload_locked_documents_rels\` RENAME TO \`payload_locked_documents_rels\`;`) + await db.run(sql`PRAGMA foreign_keys=ON;`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_order_idx\` ON \`payload_locked_documents_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_parent_idx\` ON \`payload_locked_documents_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_path_idx\` ON \`payload_locked_documents_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_pages_id_idx\` ON \`payload_locked_documents_rels\` (\`pages_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_posts_id_idx\` ON \`payload_locked_documents_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_events_id_idx\` ON \`payload_locked_documents_rels\` (\`events_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_preistraeger_id_idx\` ON \`payload_locked_documents_rels\` (\`preistraeger_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_media_id_idx\` ON \`payload_locked_documents_rels\` (\`media_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_categories_id_idx\` ON \`payload_locked_documents_rels\` (\`categories_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_users_id_idx\` ON \`payload_locked_documents_rels\` (\`users_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_redirects_id_idx\` ON \`payload_locked_documents_rels\` (\`redirects_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_forms_id_idx\` ON \`payload_locked_documents_rels\` (\`forms_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_form_submissions_id_idx\` ON \`payload_locked_documents_rels\` (\`form_submissions_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_search_id_idx\` ON \`payload_locked_documents_rels\` (\`search_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_payload_folders_id_idx\` ON \`payload_locked_documents_rels\` (\`payload_folders_id\`);`) +} diff --git a/src/migrations/20260630_182219_prune_unused_admin_collections.json b/src/migrations/20260630_182219_prune_unused_admin_collections.json new file mode 100644 index 0000000..9781ed5 --- /dev/null +++ b/src/migrations/20260630_182219_prune_unused_admin_collections.json @@ -0,0 +1,30886 @@ +{ + "version": "6", + "dialect": "sqlite", + "tables": { + "pages_hero_links": { + "name": "pages_hero_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_hero_links_order_idx": { + "name": "pages_hero_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_hero_links_parent_id_idx": { + "name": "pages_hero_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_hero_links_parent_id_fk": { + "name": "pages_hero_links_parent_id_fk", + "tableFrom": "pages_hero_links", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_cta_links": { + "name": "pages_blocks_cta_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_blocks_cta_links_order_idx": { + "name": "pages_blocks_cta_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_cta_links_parent_id_idx": { + "name": "pages_blocks_cta_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_cta_links_parent_id_fk": { + "name": "pages_blocks_cta_links_parent_id_fk", + "tableFrom": "pages_blocks_cta_links", + "tableTo": "pages_blocks_cta", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_cta": { + "name": "pages_blocks_cta", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_cta_order_idx": { + "name": "pages_blocks_cta_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_cta_parent_id_idx": { + "name": "pages_blocks_cta_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_cta_path_idx": { + "name": "pages_blocks_cta_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_cta_parent_id_fk": { + "name": "pages_blocks_cta_parent_id_fk", + "tableFrom": "pages_blocks_cta", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_content_columns": { + "name": "pages_blocks_content_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "size": { + "name": "size", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oneThird'" + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_link": { + "name": "enable_link", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + } + }, + "indexes": { + "pages_blocks_content_columns_order_idx": { + "name": "pages_blocks_content_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_content_columns_parent_id_idx": { + "name": "pages_blocks_content_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_content_columns_parent_id_fk": { + "name": "pages_blocks_content_columns_parent_id_fk", + "tableFrom": "pages_blocks_content_columns", + "tableTo": "pages_blocks_content", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_content": { + "name": "pages_blocks_content", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_content_order_idx": { + "name": "pages_blocks_content_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_content_parent_id_idx": { + "name": "pages_blocks_content_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_content_path_idx": { + "name": "pages_blocks_content_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_content_parent_id_fk": { + "name": "pages_blocks_content_parent_id_fk", + "tableFrom": "pages_blocks_content", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_blocks_media_block": { + "name": "pages_blocks_media_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_blocks_media_block_order_idx": { + "name": "pages_blocks_media_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_blocks_media_block_parent_id_idx": { + "name": "pages_blocks_media_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_blocks_media_block_path_idx": { + "name": "pages_blocks_media_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "pages_blocks_media_block_media_idx": { + "name": "pages_blocks_media_block_media_idx", + "columns": [ + "media_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_blocks_media_block_media_id_media_id_fk": { + "name": "pages_blocks_media_block_media_id_media_id_fk", + "tableFrom": "pages_blocks_media_block", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_media_block_parent_id_fk": { + "name": "pages_blocks_media_block_parent_id_fk", + "tableFrom": "pages_blocks_media_block", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_hero_partners": { + "name": "pages_home_hero_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_hero_partners_order_idx": { + "name": "pages_home_hero_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_hero_partners_parent_id_idx": { + "name": "pages_home_hero_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_hero_partners_parent_id_fk": { + "name": "pages_home_hero_partners_parent_id_fk", + "tableFrom": "pages_home_hero_partners", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_quick_check_criteria": { + "name": "pages_home_quick_check_criteria", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_quick_check_criteria_order_idx": { + "name": "pages_home_quick_check_criteria_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_quick_check_criteria_parent_id_idx": { + "name": "pages_home_quick_check_criteria_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_quick_check_criteria_parent_id_fk": { + "name": "pages_home_quick_check_criteria_parent_id_fk", + "tableFrom": "pages_home_quick_check_criteria", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_intro_stats": { + "name": "pages_home_intro_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_intro_stats_order_idx": { + "name": "pages_home_intro_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_intro_stats_parent_id_idx": { + "name": "pages_home_intro_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_intro_stats_parent_id_fk": { + "name": "pages_home_intro_stats_parent_id_fk", + "tableFrom": "pages_home_intro_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_testimonials_items": { + "name": "pages_home_testimonials_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_testimonials_items_order_idx": { + "name": "pages_home_testimonials_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_testimonials_items_parent_id_idx": { + "name": "pages_home_testimonials_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "pages_home_testimonials_items_image_idx": { + "name": "pages_home_testimonials_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_testimonials_items_image_id_media_id_fk": { + "name": "pages_home_testimonials_items_image_id_media_id_fk", + "tableFrom": "pages_home_testimonials_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_testimonials_items_parent_id_fk": { + "name": "pages_home_testimonials_items_parent_id_fk", + "tableFrom": "pages_home_testimonials_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_benefits_items": { + "name": "pages_home_benefits_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_benefits_items_order_idx": { + "name": "pages_home_benefits_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_benefits_items_parent_id_idx": { + "name": "pages_home_benefits_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_benefits_items_parent_id_fk": { + "name": "pages_home_benefits_items_parent_id_fk", + "tableFrom": "pages_home_benefits_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_home_application_benefits": { + "name": "pages_home_application_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_home_application_benefits_order_idx": { + "name": "pages_home_application_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_home_application_benefits_parent_id_idx": { + "name": "pages_home_application_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_home_application_benefits_parent_id_fk": { + "name": "pages_home_application_benefits_parent_id_fk", + "tableFrom": "pages_home_application_benefits", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_self_steps": { + "name": "home_self_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "home_self_steps_order_idx": { + "name": "home_self_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_self_steps_parent_id_idx": { + "name": "home_self_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_self_steps_parent_id_fk": { + "name": "home_self_steps_parent_id_fk", + "tableFrom": "home_self_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_nom_steps": { + "name": "home_nom_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "home_nom_steps_order_idx": { + "name": "home_nom_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_nom_steps_parent_id_idx": { + "name": "home_nom_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_nom_steps_parent_id_fk": { + "name": "home_nom_steps_parent_id_fk", + "tableFrom": "home_nom_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "home_emp_opts": { + "name": "home_emp_opts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "home_emp_opts_order_idx": { + "name": "home_emp_opts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "home_emp_opts_parent_id_idx": { + "name": "home_emp_opts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "home_emp_opts_parent_id_fk": { + "name": "home_emp_opts_parent_id_fk", + "tableFrom": "home_emp_opts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_items": { + "name": "pages_contact_info_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "lines": { + "name": "lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_items_order_idx": { + "name": "pages_contact_info_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_items_parent_id_idx": { + "name": "pages_contact_info_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_items_parent_id_fk": { + "name": "pages_contact_info_items_parent_id_fk", + "tableFrom": "pages_contact_info_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_form_copy_steps": { + "name": "pages_contact_info_form_copy_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_form_copy_steps_order_idx": { + "name": "pages_contact_info_form_copy_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_form_copy_steps_parent_id_idx": { + "name": "pages_contact_info_form_copy_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_form_copy_steps_parent_id_fk": { + "name": "pages_contact_info_form_copy_steps_parent_id_fk", + "tableFrom": "pages_contact_info_form_copy_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_info_form_copy_subjects": { + "name": "pages_contact_info_form_copy_subjects", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_info_form_copy_subjects_order_idx": { + "name": "pages_contact_info_form_copy_subjects_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_info_form_copy_subjects_parent_id_idx": { + "name": "pages_contact_info_form_copy_subjects_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_info_form_copy_subjects_parent_id_fk": { + "name": "pages_contact_info_form_copy_subjects_parent_id_fk", + "tableFrom": "pages_contact_info_form_copy_subjects", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_deadlines_items": { + "name": "pages_contact_deadlines_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_deadlines_items_order_idx": { + "name": "pages_contact_deadlines_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_deadlines_items_parent_id_idx": { + "name": "pages_contact_deadlines_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_deadlines_items_parent_id_fk": { + "name": "pages_contact_deadlines_items_parent_id_fk", + "tableFrom": "pages_contact_deadlines_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_contact_faq_items": { + "name": "pages_contact_faq_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_contact_faq_items_order_idx": { + "name": "pages_contact_faq_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_contact_faq_items_parent_id_idx": { + "name": "pages_contact_faq_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_contact_faq_items_parent_id_fk": { + "name": "pages_contact_faq_items_parent_id_fk", + "tableFrom": "pages_contact_faq_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "proc_steps": { + "name": "proc_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + } + }, + "indexes": { + "proc_steps_order_idx": { + "name": "proc_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "proc_steps_parent_id_idx": { + "name": "proc_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "proc_steps_parent_id_fk": { + "name": "proc_steps_parent_id_fk", + "tableFrom": "proc_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "elig_crit": { + "name": "elig_crit", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + } + }, + "indexes": { + "elig_crit_order_idx": { + "name": "elig_crit_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "elig_crit_parent_id_idx": { + "name": "elig_crit_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "elig_crit_parent_id_fk": { + "name": "elig_crit_parent_id_fk", + "tableFrom": "elig_crit", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "elig_notes": { + "name": "elig_notes", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'building2'" + } + }, + "indexes": { + "elig_notes_order_idx": { + "name": "elig_notes_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "elig_notes_parent_id_idx": { + "name": "elig_notes_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "elig_notes_parent_id_fk": { + "name": "elig_notes_parent_id_fk", + "tableFrom": "elig_notes", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "app_inst": { + "name": "app_inst", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "app_inst_order_idx": { + "name": "app_inst_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "app_inst_parent_id_idx": { + "name": "app_inst_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "app_inst_parent_id_fk": { + "name": "app_inst_parent_id_fk", + "tableFrom": "app_inst", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "way_facts": { + "name": "way_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "way_facts_order_idx": { + "name": "way_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "way_facts_parent_id_idx": { + "name": "way_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "way_facts_parent_id_fk": { + "name": "way_facts_parent_id_fk", + "tableFrom": "way_facts", + "tableTo": "app_ways", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "app_ways": { + "name": "app_ways", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'send'" + }, + "featured": { + "name": "featured", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "list_type": { + "name": "list_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'facts'" + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + } + }, + "indexes": { + "app_ways_order_idx": { + "name": "app_ways_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "app_ways_parent_id_idx": { + "name": "app_ways_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "app_ways_parent_id_fk": { + "name": "app_ways_parent_id_fk", + "tableFrom": "app_ways", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "date_mob": { + "name": "date_mob", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "date_mob_order_idx": { + "name": "date_mob_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "date_mob_parent_id_idx": { + "name": "date_mob_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "date_mob_parent_id_fk": { + "name": "date_mob_parent_id_fk", + "tableFrom": "date_mob", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "date_desk": { + "name": "date_desk", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "date_desk_order_idx": { + "name": "date_desk_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "date_desk_parent_id_idx": { + "name": "date_desk_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "date_desk_parent_id_fk": { + "name": "date_desk_parent_id_fk", + "tableFrom": "date_desk", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "award_cards": { + "name": "award_cards", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "article_cta_label": { + "name": "article_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel lesen'" + }, + "article_cta_url": { + "name": "article_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "mailto_cta_label": { + "name": "mailto_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "mailto_cta_url": { + "name": "mailto_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mailto:info@bmp-bayern.de'" + } + }, + "indexes": { + "award_cards_order_idx": { + "name": "award_cards_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "award_cards_parent_id_idx": { + "name": "award_cards_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "award_cards_image_idx": { + "name": "award_cards_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "award_cards_image_id_media_id_fk": { + "name": "award_cards_image_id_media_id_fk", + "tableFrom": "award_cards", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "award_cards_parent_id_fk": { + "name": "award_cards_parent_id_fk", + "tableFrom": "award_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "form_facts": { + "name": "form_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "form_facts_order_idx": { + "name": "form_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "form_facts_parent_id_idx": { + "name": "form_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "form_facts_parent_id_fk": { + "name": "form_facts_parent_id_fk", + "tableFrom": "form_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "self_steps": { + "name": "self_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "self_steps_order_idx": { + "name": "self_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "self_steps_parent_id_idx": { + "name": "self_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "self_steps_parent_id_fk": { + "name": "self_steps_parent_id_fk", + "tableFrom": "self_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "nom_steps": { + "name": "nom_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + } + }, + "indexes": { + "nom_steps_order_idx": { + "name": "nom_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "nom_steps_parent_id_idx": { + "name": "nom_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "nom_steps_parent_id_fk": { + "name": "nom_steps_parent_id_fk", + "tableFrom": "nom_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "emp_opts": { + "name": "emp_opts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "emp_opts_order_idx": { + "name": "emp_opts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "emp_opts_parent_id_idx": { + "name": "emp_opts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "emp_opts_parent_id_fk": { + "name": "emp_opts_parent_id_fk", + "tableFrom": "emp_opts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_hero_stats": { + "name": "about_hero_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_hero_stats_order_idx": { + "name": "about_hero_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_hero_stats_parent_id_idx": { + "name": "about_hero_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_hero_stats_parent_id_fk": { + "name": "about_hero_stats_parent_id_fk", + "tableFrom": "about_hero_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_prize_body": { + "name": "about_prize_body", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_prize_body_order_idx": { + "name": "about_prize_body_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_prize_body_parent_id_idx": { + "name": "about_prize_body_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_prize_body_parent_id_fk": { + "name": "about_prize_body_parent_id_fk", + "tableFrom": "about_prize_body", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_prize_facts": { + "name": "about_prize_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_prize_facts_order_idx": { + "name": "about_prize_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_prize_facts_parent_id_idx": { + "name": "about_prize_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_prize_facts_parent_id_fk": { + "name": "about_prize_facts_parent_id_fk", + "tableFrom": "about_prize_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_mid_body": { + "name": "about_mid_body", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_mid_body_order_idx": { + "name": "about_mid_body_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_mid_body_parent_id_idx": { + "name": "about_mid_body_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_mid_body_parent_id_fk": { + "name": "about_mid_body_parent_id_fk", + "tableFrom": "about_mid_body", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_tst_items": { + "name": "about_tst_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_tst_items_order_idx": { + "name": "about_tst_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_tst_items_parent_id_idx": { + "name": "about_tst_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "about_tst_items_image_idx": { + "name": "about_tst_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_tst_items_image_id_media_id_fk": { + "name": "about_tst_items_image_id_media_id_fk", + "tableFrom": "about_tst_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "about_tst_items_parent_id_fk": { + "name": "about_tst_items_parent_id_fk", + "tableFrom": "about_tst_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_hist_items": { + "name": "about_hist_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_hist_items_order_idx": { + "name": "about_hist_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_hist_items_parent_id_idx": { + "name": "about_hist_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_hist_items_parent_id_fk": { + "name": "about_hist_items_parent_id_fk", + "tableFrom": "about_hist_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_goal_items": { + "name": "about_goal_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_goal_items_order_idx": { + "name": "about_goal_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_goal_items_parent_id_idx": { + "name": "about_goal_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_goal_items_parent_id_fk": { + "name": "about_goal_items_parent_id_fk", + "tableFrom": "about_goal_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "about_val_items": { + "name": "about_val_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "about_val_items_order_idx": { + "name": "about_val_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "about_val_items_parent_id_idx": { + "name": "about_val_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "about_val_items_parent_id_fk": { + "name": "about_val_items_parent_id_fk", + "tableFrom": "about_val_items", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "imp_sections": { + "name": "imp_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "imp_sections_order_idx": { + "name": "imp_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "imp_sections_parent_id_idx": { + "name": "imp_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "imp_sections_parent_id_fk": { + "name": "imp_sections_parent_id_fk", + "tableFrom": "imp_sections", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "data_sections": { + "name": "data_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "data_sections_order_idx": { + "name": "data_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "data_sections_parent_id_idx": { + "name": "data_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "data_sections_parent_id_fk": { + "name": "data_sections_parent_id_fk", + "tableFrom": "data_sections", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_press_index_events_status_labels": { + "name": "pages_press_index_events_status_labels", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_press_index_events_status_labels_order_idx": { + "name": "pages_press_index_events_status_labels_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "pages_press_index_events_status_labels_parent_id_idx": { + "name": "pages_press_index_events_status_labels_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_press_index_events_status_labels_parent_id_fk": { + "name": "pages_press_index_events_status_labels_parent_id_fk", + "tableFrom": "pages_press_index_events_status_labels", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "press_events_fb": { + "name": "press_events_fb", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "press_events_fb_order_idx": { + "name": "press_events_fb_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "press_events_fb_parent_id_idx": { + "name": "press_events_fb_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "press_events_fb_image_idx": { + "name": "press_events_fb_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "press_events_fb_image_id_media_id_fk": { + "name": "press_events_fb_image_id_media_id_fk", + "tableFrom": "press_events_fb", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "press_events_fb_parent_id_fk": { + "name": "press_events_fb_parent_id_fk", + "tableFrom": "press_events_fb", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "press_news_fb": { + "name": "press_news_fb", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "press_news_fb_order_idx": { + "name": "press_news_fb_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "press_news_fb_parent_id_idx": { + "name": "press_news_fb_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "press_news_fb_image_idx": { + "name": "press_news_fb_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "press_news_fb_image_id_media_id_fk": { + "name": "press_news_fb_image_id_media_id_fk", + "tableFrom": "press_news_fb", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "press_news_fb_parent_id_fk": { + "name": "press_news_fb_parent_id_fk", + "tableFrom": "press_news_fb", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "upload_stats": { + "name": "upload_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "upload_stats_order_idx": { + "name": "upload_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "upload_stats_parent_id_idx": { + "name": "upload_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "upload_stats_parent_id_fk": { + "name": "upload_stats_parent_id_fk", + "tableFrom": "upload_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "upload_req_cards": { + "name": "upload_req_cards", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "upload_req_cards_order_idx": { + "name": "upload_req_cards_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "upload_req_cards_parent_id_idx": { + "name": "upload_req_cards_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "upload_req_cards_parent_id_fk": { + "name": "upload_req_cards_parent_id_fk", + "tableFrom": "upload_req_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_patrons": { + "name": "network_patrons", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line1": { + "name": "title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line2": { + "name": "title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "institution": { + "name": "institution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_patrons_order_idx": { + "name": "network_patrons_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_patrons_parent_id_idx": { + "name": "network_patrons_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_patrons_image_upload_idx": { + "name": "network_patrons_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_patrons_image_upload_id_media_id_fk": { + "name": "network_patrons_image_upload_id_media_id_fk", + "tableFrom": "network_patrons", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_patrons_parent_id_fk": { + "name": "network_patrons_parent_id_fk", + "tableFrom": "network_patrons", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury_stats": { + "name": "network_jury_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_stats_order_idx": { + "name": "network_jury_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_stats_parent_id_idx": { + "name": "network_jury_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_stats_parent_id_fk": { + "name": "network_jury_stats_parent_id_fk", + "tableFrom": "network_jury_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury_d_stats": { + "name": "network_jury_d_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_d_stats_order_idx": { + "name": "network_jury_d_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_d_stats_parent_id_idx": { + "name": "network_jury_d_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_d_stats_parent_id_fk": { + "name": "network_jury_d_stats_parent_id_fk", + "tableFrom": "network_jury_d_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_jury": { + "name": "network_jury", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bio": { + "name": "bio", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_jury_order_idx": { + "name": "network_jury_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_jury_parent_id_idx": { + "name": "network_jury_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "network_jury_image_upload_idx": { + "name": "network_jury_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_jury_image_upload_id_media_id_fk": { + "name": "network_jury_image_upload_id_media_id_fk", + "tableFrom": "network_jury", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "network_jury_parent_id_fk": { + "name": "network_jury_parent_id_fk", + "tableFrom": "network_jury", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_eval": { + "name": "network_eval", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_eval_order_idx": { + "name": "network_eval_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_eval_parent_id_idx": { + "name": "network_eval_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_eval_parent_id_fk": { + "name": "network_eval_parent_id_fk", + "tableFrom": "network_eval", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_tiers": { + "name": "network_tiers", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_tiers_order_idx": { + "name": "network_tiers_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_tiers_parent_id_idx": { + "name": "network_tiers_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_tiers_parent_id_fk": { + "name": "network_tiers_parent_id_fk", + "tableFrom": "network_tiers", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_sponsor_bens": { + "name": "network_sponsor_bens", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sub": { + "name": "sub", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_sponsor_bens_order_idx": { + "name": "network_sponsor_bens_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_sponsor_bens_parent_id_idx": { + "name": "network_sponsor_bens_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_sponsor_bens_parent_id_fk": { + "name": "network_sponsor_bens_parent_id_fk", + "tableFrom": "network_sponsor_bens", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_form_steps": { + "name": "network_form_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_form_steps_order_idx": { + "name": "network_form_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_form_steps_parent_id_idx": { + "name": "network_form_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_form_steps_parent_id_fk": { + "name": "network_form_steps_parent_id_fk", + "tableFrom": "network_form_steps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "network_form_pkgs": { + "name": "network_form_pkgs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "network_form_pkgs_order_idx": { + "name": "network_form_pkgs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "network_form_pkgs_parent_id_idx": { + "name": "network_form_pkgs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "network_form_pkgs_parent_id_fk": { + "name": "network_form_pkgs_parent_id_fk", + "tableFrom": "network_form_pkgs", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_hero_stats": { + "name": "member_hero_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_hero_stats_order_idx": { + "name": "member_hero_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_hero_stats_parent_id_idx": { + "name": "member_hero_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_hero_stats_parent_id_fk": { + "name": "member_hero_stats_parent_id_fk", + "tableFrom": "member_hero_stats", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_benefits": { + "name": "member_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'users'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_benefits_order_idx": { + "name": "member_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_benefits_parent_id_idx": { + "name": "member_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_benefits_parent_id_fk": { + "name": "member_benefits_parent_id_fk", + "tableFrom": "member_benefits", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_about_copy": { + "name": "member_about_copy", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_about_copy_order_idx": { + "name": "member_about_copy_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_about_copy_parent_id_idx": { + "name": "member_about_copy_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_about_copy_parent_id_fk": { + "name": "member_about_copy_parent_id_fk", + "tableFrom": "member_about_copy", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_about_facts": { + "name": "member_about_facts", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_about_facts_order_idx": { + "name": "member_about_facts_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_about_facts_parent_id_idx": { + "name": "member_about_facts_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_about_facts_parent_id_fk": { + "name": "member_about_facts_parent_id_fk", + "tableFrom": "member_about_facts", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_pricing": { + "name": "member_pricing", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "max": { + "name": "max", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "annual": { + "name": "annual", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_pricing_order_idx": { + "name": "member_pricing_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_pricing_parent_id_idx": { + "name": "member_pricing_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_pricing_parent_id_fk": { + "name": "member_pricing_parent_id_fk", + "tableFrom": "member_pricing", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_app_options": { + "name": "member_app_options", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "number": { + "name": "number", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "eyebrow": { + "name": "eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "file_id": { + "name": "file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "download": { + "name": "download", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_app_options_order_idx": { + "name": "member_app_options_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_app_options_parent_id_idx": { + "name": "member_app_options_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "member_app_options_file_idx": { + "name": "member_app_options_file_idx", + "columns": [ + "file_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_app_options_file_id_media_id_fk": { + "name": "member_app_options_file_id_media_id_fk", + "tableFrom": "member_app_options", + "tableTo": "media", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "member_app_options_parent_id_fk": { + "name": "member_app_options_parent_id_fk", + "tableFrom": "member_app_options", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_promises": { + "name": "member_promises", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_promises_order_idx": { + "name": "member_promises_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_promises_parent_id_idx": { + "name": "member_promises_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_promises_parent_id_fk": { + "name": "member_promises_parent_id_fk", + "tableFrom": "member_promises", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_quotes": { + "name": "member_quotes", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "initials": { + "name": "initials", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_quotes_order_idx": { + "name": "member_quotes_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_quotes_parent_id_idx": { + "name": "member_quotes_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_quotes_parent_id_fk": { + "name": "member_quotes_parent_id_fk", + "tableFrom": "member_quotes", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "member_faq": { + "name": "member_faq", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "member_faq_order_idx": { + "name": "member_faq_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "member_faq_parent_id_idx": { + "name": "member_faq_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "member_faq_parent_id_fk": { + "name": "member_faq_parent_id_fk", + "tableFrom": "member_faq", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages": { + "name": "pages", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_type": { + "name": "hero_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'lowImpact'" + }, + "hero_rich_text": { + "name": "hero_rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_media_id": { + "name": "hero_media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_hero_background_image_id": { + "name": "home_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_hero_image_alt": { + "name": "home_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Awards Gala'" + }, + "home_hero_badge": { + "name": "home_hero_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026 geschlossen'" + }, + "home_hero_heading_line1": { + "name": "home_hero_heading_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERNS BESTE'" + }, + "home_hero_heading_accent": { + "name": "home_hero_heading_accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTÄNDLER.'" + }, + "home_hero_description": { + "name": "home_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis würdigt herausragende Leistungen – von Innovation über Nachhaltigkeit bis hin zur Exzellenz.'" + }, + "home_hero_primary_cta_label": { + "name": "home_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "home_hero_primary_cta_url": { + "name": "home_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "home_hero_secondary_cta_label": { + "name": "home_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "home_hero_secondary_cta_url": { + "name": "home_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "home_hero_video_label": { + "name": "home_hero_video_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Film abspielen'" + }, + "home_hero_partners_label": { + "name": "home_hero_partners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unsere Partner'" + }, + "home_quick_check_eyebrow": { + "name": "home_quick_check_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "home_quick_check_heading": { + "name": "home_quick_check_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SIND SIE\nBERECHTIGT?'" + }, + "home_quick_check_image_id": { + "name": "home_quick_check_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_quick_check_image_alt": { + "name": "home_quick_check_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bühne'" + }, + "home_quick_check_body": { + "name": "home_quick_check_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte KMU im Freistaat. Fünf Kriterien entscheiden, erfüllen Sie alle fünf, steht Ihrer Bewerbung nichts im Weg.'" + }, + "home_quick_check_note": { + "name": "home_quick_check_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auch ein Verbund bzw. eine Gemeinschaft von mittelständischen Unternehmen oder von mittelständischen Unternehmen und Organisationen/Institutionen mit Schwerpunkt in Bayern kann teilnehmen.'" + }, + "home_quick_check_cta_label": { + "name": "home_quick_check_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Weg zum Preis'" + }, + "home_quick_check_cta_url": { + "name": "home_quick_check_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "home_intro_eyebrow": { + "name": "home_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ein Gewinn für alle'" + }, + "home_intro_heading": { + "name": "home_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSZEICHNUNG\nFÜR DIE BESTEN.'" + }, + "home_intro_image_id": { + "name": "home_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_intro_image_alt": { + "name": "home_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Auszeichnung'" + }, + "home_intro_quote": { + "name": "home_intro_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Ein Unternehmen zu gründen erfordert nicht allein spezielle Fähigkeiten. Es erfordert Persönlichkeit!“'" + }, + "home_intro_body": { + "name": "home_intro_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir suchen Vorbilder, die sich trotz aller Risiken nicht scheuen, Visionen in Businesspläne und Ideen in Unternehmungen zu verwandeln, und das mit großem persönlichen Einsatz und Verantwortung für Ihre Mitarbeiter. Seit vielen Jahren würdigen wir herausragende unternehmerische Leistungen im Freistaat.'" + }, + "home_intro_cta_label": { + "name": "home_intro_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr über den Preis'" + }, + "home_intro_cta_url": { + "name": "home_intro_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/der-bmp'" + }, + "home_winners_eyebrow": { + "name": "home_winners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Success Stories'" + }, + "home_winners_heading": { + "name": "home_winners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DIE BESTEN UNTERNEHMEN IN BAYERN'" + }, + "home_winners_cta_label": { + "name": "home_winners_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "home_winners_cta_url": { + "name": "home_winners_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "home_winners_fallback_image_id": { + "name": "home_winners_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_winners_card_fallback_title": { + "name": "home_winners_card_fallback_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "home_winners_hover_label": { + "name": "home_winners_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "home_testimonials_eyebrow": { + "name": "home_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "home_testimonials_heading": { + "name": "home_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "home_testimonials_desktop_heading": { + "name": "home_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "home_testimonials_year_prefix": { + "name": "home_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "home_testimonials_previous_label": { + "name": "home_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "home_testimonials_next_label": { + "name": "home_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "home_testimonials_slide_label_prefix": { + "name": "home_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "home_benefits_eyebrow": { + "name": "home_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr als nur ein Preis'" + }, + "home_benefits_heading": { + "name": "home_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM SICH DIE\nTEILNAHME LOHNT.'" + }, + "home_benefits_image_id": { + "name": "home_benefits_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_benefits_image_alt": { + "name": "home_benefits_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Netzwerk'" + }, + "home_benefits_image_label": { + "name": "home_benefits_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala-Netzwerk'" + }, + "home_application_eyebrow": { + "name": "home_application_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Chance ergreifen'" + }, + "home_application_heading": { + "name": "home_application_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN\nAUCH SIE\nGESCHICHTE.'" + }, + "home_application_body": { + "name": "home_application_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands – vollständig kostenfrei.'" + }, + "home_application_award_image_id": { + "name": "home_application_award_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_application_award_image_alt": { + "name": "home_application_award_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bayerischer Mittelstandspreis'" + }, + "home_application_award_caption": { + "name": "home_application_award_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "home_application_form_eyebrow": { + "name": "home_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung 2026'" + }, + "home_application_form_title": { + "name": "home_application_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos bewerben'" + }, + "home_application_footnote": { + "name": "home_application_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos und unverbindlich –'" + }, + "home_application_footnote_strong": { + "name": "home_application_footnote_strong", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'keine Teilnahmegebühr'" + }, + "home_form_step_complete_label": { + "name": "home_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "home_form_back_label": { + "name": "home_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "home_form_next_label": { + "name": "home_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "home_form_submit_label": { + "name": "home_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "home_form_yes_label": { + "name": "home_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "home_form_no_label": { + "name": "home_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "home_form_required_suffix": { + "name": "home_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "home_form_validation_choose": { + "name": "home_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "home_form_validation_required": { + "name": "home_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "home_form_validation_invalid_email": { + "name": "home_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "home_form_type_step_eyebrow": { + "name": "home_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "home_form_type_step_heading": { + "name": "home_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "home_form_type_step_self_title": { + "name": "home_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "home_form_type_step_self_desc": { + "name": "home_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "home_form_type_step_nomination_title": { + "name": "home_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "home_form_type_step_nomination_desc": { + "name": "home_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "home_form_eligibility_allowed_employee_values": { + "name": "home_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "home_form_eligibility_required_bayern_value": { + "name": "home_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "home_form_eligibility_eyebrow": { + "name": "home_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "home_form_eligibility_heading": { + "name": "home_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "home_form_eligibility_employees_label": { + "name": "home_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "home_form_eligibility_bayern_label": { + "name": "home_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "home_form_eligibility_owner_label": { + "name": "home_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "home_form_eligibility_ineligible_heading": { + "name": "home_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "home_form_eligibility_ineligible_body": { + "name": "home_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "home_form_eligibility_ineligible_contact_prefix": { + "name": "home_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "home_form_eligibility_ineligible_contact_email": { + "name": "home_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "home_form_self_contact_eyebrow": { + "name": "home_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "home_form_self_contact_heading": { + "name": "home_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "home_form_self_contact_company_label": { + "name": "home_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "home_form_self_contact_company_placeholder": { + "name": "home_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "home_form_self_contact_name_label": { + "name": "home_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "home_form_self_contact_name_placeholder": { + "name": "home_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "home_form_self_contact_email_label": { + "name": "home_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "home_form_self_contact_email_placeholder": { + "name": "home_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "home_form_self_contact_phone_label": { + "name": "home_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "home_form_self_contact_phone_placeholder": { + "name": "home_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "home_form_self_contact_footnote": { + "name": "home_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "home_form_self_summary_eyebrow": { + "name": "home_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "home_form_self_summary_heading": { + "name": "home_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "home_form_self_summary_company_label": { + "name": "home_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "home_form_self_summary_employees_label": { + "name": "home_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "home_form_self_summary_location_label": { + "name": "home_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "home_form_self_summary_location_prefix": { + "name": "home_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "home_form_self_summary_contact_label": { + "name": "home_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "home_form_nomination_company_eyebrow": { + "name": "home_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "home_form_nomination_company_heading": { + "name": "home_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "home_form_nomination_company_company_label": { + "name": "home_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "home_form_nomination_company_company_placeholder": { + "name": "home_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "home_form_nomination_company_industry_label": { + "name": "home_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "home_form_nomination_company_industry_placeholder": { + "name": "home_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "home_form_nomination_company_location_label": { + "name": "home_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "home_form_nomination_company_location_placeholder": { + "name": "home_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "home_form_nomination_contact_eyebrow": { + "name": "home_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "home_form_nomination_contact_heading": { + "name": "home_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "home_form_nomination_contact_name_label": { + "name": "home_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "home_form_nomination_contact_name_placeholder": { + "name": "home_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "home_form_nomination_contact_email_label": { + "name": "home_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "home_form_nomination_contact_email_placeholder": { + "name": "home_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "home_form_nomination_contact_relationship_label": { + "name": "home_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "home_form_nomination_contact_relationship_placeholder": { + "name": "home_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "home_form_nomination_contact_footnote": { + "name": "home_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "home_form_nomination_summary_eyebrow": { + "name": "home_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "home_form_nomination_summary_heading": { + "name": "home_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "home_form_nomination_summary_company_label": { + "name": "home_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "home_form_nomination_summary_industry_label": { + "name": "home_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "home_form_nomination_summary_location_label": { + "name": "home_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "home_form_nomination_summary_nominated_by_label": { + "name": "home_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "home_form_nomination_summary_empty_value": { + "name": "home_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "home_form_success_self_heading": { + "name": "home_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "home_form_success_nomination_heading": { + "name": "home_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "home_form_success_self_prefix": { + "name": "home_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "home_form_success_self_middle": { + "name": "home_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "home_form_success_self_suffix": { + "name": "home_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "home_form_success_nomination_prefix": { + "name": "home_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "home_form_success_nomination_middle": { + "name": "home_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "home_form_success_nomination_suffix": { + "name": "home_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "home_video_modal_video_id": { + "name": "home_video_modal_video_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "home_video_modal_title": { + "name": "home_video_modal_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Video-Player Platzhalter'" + }, + "home_video_modal_description": { + "name": "home_video_modal_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hier würde das Image-Video des BMP geladen werden.'" + }, + "home_video_modal_close_label": { + "name": "home_video_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "contact_hero_background_image_id": { + "name": "contact_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "contact_hero_image_alt": { + "name": "contact_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "contact_hero_eyebrow": { + "name": "contact_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dialog & Service'" + }, + "contact_hero_heading": { + "name": "contact_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir sind\nfür Sie da.'" + }, + "contact_hero_description": { + "name": "contact_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen zur Bewerbung, zur Gala oder zu Partnermöglichkeiten – unser Team begleitet Sie persönlich.'" + }, + "contact_info_eyebrow": { + "name": "contact_info_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktkontakt'" + }, + "contact_info_heading": { + "name": "contact_info_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt­möglichkeiten'" + }, + "contact_info_next_award_label": { + "name": "contact_info_next_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächste Preisverleihung:'" + }, + "contact_info_next_award_date": { + "name": "contact_info_next_award_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'22. Oktober 2026'" + }, + "contact_info_form_image_id": { + "name": "contact_info_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "contact_info_form_image_alt": { + "name": "contact_info_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala 2025'" + }, + "contact_info_form_image_label": { + "name": "contact_info_form_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala 2025 München'" + }, + "contact_info_form_eyebrow": { + "name": "contact_info_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontaktformular'" + }, + "contact_info_form_title": { + "name": "contact_info_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie uns'" + }, + "contact_info_form_copy_prompts_subject": { + "name": "contact_info_form_copy_prompts_subject", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Womit können wir Ihnen helfen?'" + }, + "contact_info_form_copy_prompts_contact": { + "name": "contact_info_form_copy_prompts_contact", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie dürfen wir Sie kontaktieren?'" + }, + "contact_info_form_copy_prompts_message": { + "name": "contact_info_form_copy_prompts_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was möchten Sie uns mitteilen?'" + }, + "contact_info_form_copy_fields_name_label": { + "name": "contact_info_form_copy_fields_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Name'" + }, + "contact_info_form_copy_fields_name_placeholder": { + "name": "contact_info_form_copy_fields_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "contact_info_form_copy_fields_email_label": { + "name": "contact_info_form_copy_fields_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "contact_info_form_copy_fields_email_placeholder": { + "name": "contact_info_form_copy_fields_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "contact_info_form_copy_fields_message_label": { + "name": "contact_info_form_copy_fields_message_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht'" + }, + "contact_info_form_copy_fields_message_placeholder": { + "name": "contact_info_form_copy_fields_message_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie Ihre Nachricht…'" + }, + "contact_info_form_copy_validation_name_required": { + "name": "contact_info_form_copy_validation_name_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Namen angeben'" + }, + "contact_info_form_copy_validation_email_required": { + "name": "contact_info_form_copy_validation_email_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte E-Mail angeben'" + }, + "contact_info_form_copy_validation_email_invalid": { + "name": "contact_info_form_copy_validation_email_invalid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "contact_info_form_copy_validation_message_required": { + "name": "contact_info_form_copy_validation_message_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Nachricht verfassen.'" + }, + "contact_info_form_copy_navigation_back": { + "name": "contact_info_form_copy_navigation_back", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "contact_info_form_copy_navigation_next": { + "name": "contact_info_form_copy_navigation_next", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "contact_info_form_copy_navigation_submit": { + "name": "contact_info_form_copy_navigation_submit", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage senden'" + }, + "contact_info_form_copy_success_heading": { + "name": "contact_info_form_copy_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht gesendet'" + }, + "contact_info_form_copy_success_prefix": { + "name": "contact_info_form_copy_success_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Danke,'" + }, + "contact_info_form_copy_success_suffix_before_email": { + "name": "contact_info_form_copy_success_suffix_before_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns zeitnah bei'" + }, + "contact_deadlines_watermark": { + "name": "contact_deadlines_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'2026'" + }, + "contact_deadlines_eyebrow": { + "name": "contact_deadlines_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fahrplan 2026'" + }, + "contact_faq_eyebrow": { + "name": "contact_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Antworten'" + }, + "contact_faq_heading": { + "name": "contact_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige\nFragen'" + }, + "participation_hero_background_image_id": { + "name": "participation_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "participation_hero_image_alt": { + "name": "participation_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Teilnahme BMP'" + }, + "participation_hero_eyebrow": { + "name": "participation_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026'" + }, + "participation_hero_heading": { + "name": "participation_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'GESTALTEN SIE\nBAYERNS ZUKUNFT.'" + }, + "participation_hero_description": { + "name": "participation_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alles, was Sie für Ihre erfolgreiche Bewerbung zum Bayerischen Mittelstandspreis wissen müssen.'" + }, + "participation_process_eyebrow": { + "name": "participation_process_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt für Schritt'" + }, + "participation_process_heading": { + "name": "participation_process_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR WEG ZUM\nPREIS.'" + }, + "participation_process_description": { + "name": "participation_process_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Einreichung bis zur Gala – vier klar definierte Schritte auf dem Weg zur höchsten Auszeichnung des bayerischen Mittelstands.'" + }, + "participation_process_step_prefix": { + "name": "participation_process_step_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt'" + }, + "participation_process_scroll_hint": { + "name": "participation_process_scroll_hint", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Scrollen zum Erkunden'" + }, + "participation_process_progress_label": { + "name": "participation_process_progress_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'01 / 04'" + }, + "participation_eligibility_eyebrow": { + "name": "participation_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berechtigung'" + }, + "participation_eligibility_heading": { + "name": "participation_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER KANN\nTEILNEHMEN?'" + }, + "participation_eligibility_description": { + "name": "participation_eligibility_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vier klar definierte Kriterien: Erfüllen Sie alle, bewerben Sie sich kostenlos und ohne bürokratischen Aufwand.'" + }, + "participation_eligibility_primary_cta_label": { + "name": "participation_eligibility_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "participation_eligibility_primary_cta_url": { + "name": "participation_eligibility_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_eligibility_secondary_cta_label": { + "name": "participation_eligibility_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "participation_eligibility_secondary_cta_url": { + "name": "participation_eligibility_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "participation_eligibility_nudge_text": { + "name": "participation_eligibility_nudge_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle 4 Punkte erfüllt? Dann jetzt kostenlos bewerben.'" + }, + "participation_eligibility_nudge_cta_label": { + "name": "participation_eligibility_nudge_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "participation_eligibility_nudge_cta_url": { + "name": "participation_eligibility_nudge_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_application_ways_eyebrow": { + "name": "participation_application_ways_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "participation_application_ways_heading": { + "name": "participation_application_ways_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'HIER KÖNNEN SIE SICH\nBEWERBEN ODER EIN\nUNTERNEHMEN VORSCHLAGEN.'" + }, + "participation_application_ways_description": { + "name": "participation_application_ways_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Als Unternehmen haben Sie zwei Möglichkeiten: Sie werden von einem unterstützenden Partner oder einer Institution vorgeschlagen, oder Sie ergreifen selbst die Initiative und füllen unsere Anmeldung aus. Die Teilnahme ist in allen Fällen kostenfrei.'" + }, + "participation_application_ways_recommended_label": { + "name": "participation_application_ways_recommended_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Empfohlen'" + }, + "participation_application_ways_fallback_cta_label": { + "name": "participation_application_ways_fallback_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "participation_application_ways_fallback_cta_url": { + "name": "participation_application_ways_fallback_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "participation_dates_banner_heading": { + "name": "participation_dates_banner_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wichtige Termine 2026'" + }, + "participation_dates_banner_description": { + "name": "participation_dates_banner_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Planen Sie Ihre Teilnahme rechtzeitig.'" + }, + "participation_awards_grid_eyebrow": { + "name": "participation_awards_grid_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnungen 2026'" + }, + "participation_awards_grid_heading": { + "name": "participation_awards_grid_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.'" + }, + "participation_awards_grid_description": { + "name": "participation_awards_grid_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.'" + }, + "participation_application_form_image_id": { + "name": "participation_application_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "participation_application_form_image_alt": { + "name": "participation_application_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "participation_application_form_image_caption": { + "name": "participation_application_form_image_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "participation_application_form_eyebrow": { + "name": "participation_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung'" + }, + "participation_application_form_heading": { + "name": "participation_application_form_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEWERBEN ODER\nVORSCHLAGEN.'" + }, + "participation_application_form_description": { + "name": "participation_application_form_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie können sich selbst bewerben oder ein herausragendes Unternehmen vorschlagen. Firmenverbunde können sich ebenfalls bewerben. Die Teilnahme ist vollständig kostenfrei.'" + }, + "participation_application_form_form_eyebrow": { + "name": "participation_application_form_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "participation_application_form_upload_cta_label": { + "name": "participation_application_form_upload_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF hochladen'" + }, + "participation_application_form_upload_cta_url": { + "name": "participation_application_form_upload_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "participation_application_form_upload_prompt": { + "name": "participation_application_form_upload_prompt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie haben Ihre Unterlagen bereits als PDF vorbereitet? Laden Sie sie direkt hoch, statt das Formular auszufüllen.'" + }, + "participation_application_form_upload_footer_cta_label": { + "name": "participation_application_form_upload_footer_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen →'" + }, + "participation_application_form_upload_footer_cta_url": { + "name": "participation_application_form_upload_footer_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "participation_form_step_complete_label": { + "name": "participation_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "participation_form_back_label": { + "name": "participation_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "participation_form_next_label": { + "name": "participation_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "participation_form_submit_label": { + "name": "participation_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "participation_form_yes_label": { + "name": "participation_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "participation_form_no_label": { + "name": "participation_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "participation_form_required_suffix": { + "name": "participation_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "participation_form_validation_choose": { + "name": "participation_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "participation_form_validation_required": { + "name": "participation_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "participation_form_validation_invalid_email": { + "name": "participation_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "participation_form_type_step_eyebrow": { + "name": "participation_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "participation_form_type_step_heading": { + "name": "participation_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "participation_form_type_step_self_title": { + "name": "participation_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "participation_form_type_step_self_desc": { + "name": "participation_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "participation_form_type_step_nomination_title": { + "name": "participation_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "participation_form_type_step_nomination_desc": { + "name": "participation_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "participation_form_eligibility_allowed_employee_values": { + "name": "participation_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "participation_form_eligibility_required_bayern_value": { + "name": "participation_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "participation_form_eligibility_eyebrow": { + "name": "participation_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "participation_form_eligibility_heading": { + "name": "participation_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "participation_form_eligibility_employees_label": { + "name": "participation_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "participation_form_eligibility_bayern_label": { + "name": "participation_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "participation_form_eligibility_owner_label": { + "name": "participation_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "participation_form_eligibility_ineligible_heading": { + "name": "participation_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "participation_form_eligibility_ineligible_body": { + "name": "participation_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "participation_form_eligibility_ineligible_contact_prefix": { + "name": "participation_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "participation_form_eligibility_ineligible_contact_email": { + "name": "participation_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "participation_form_self_contact_eyebrow": { + "name": "participation_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "participation_form_self_contact_heading": { + "name": "participation_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "participation_form_self_contact_company_label": { + "name": "participation_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "participation_form_self_contact_company_placeholder": { + "name": "participation_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "participation_form_self_contact_name_label": { + "name": "participation_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "participation_form_self_contact_name_placeholder": { + "name": "participation_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "participation_form_self_contact_email_label": { + "name": "participation_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "participation_form_self_contact_email_placeholder": { + "name": "participation_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "participation_form_self_contact_phone_label": { + "name": "participation_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "participation_form_self_contact_phone_placeholder": { + "name": "participation_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "participation_form_self_contact_footnote": { + "name": "participation_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "participation_form_self_summary_eyebrow": { + "name": "participation_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "participation_form_self_summary_heading": { + "name": "participation_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "participation_form_self_summary_company_label": { + "name": "participation_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "participation_form_self_summary_employees_label": { + "name": "participation_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "participation_form_self_summary_location_label": { + "name": "participation_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "participation_form_self_summary_location_prefix": { + "name": "participation_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "participation_form_self_summary_contact_label": { + "name": "participation_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "participation_form_nomination_company_eyebrow": { + "name": "participation_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "participation_form_nomination_company_heading": { + "name": "participation_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "participation_form_nomination_company_company_label": { + "name": "participation_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "participation_form_nomination_company_company_placeholder": { + "name": "participation_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "participation_form_nomination_company_industry_label": { + "name": "participation_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "participation_form_nomination_company_industry_placeholder": { + "name": "participation_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "participation_form_nomination_company_location_label": { + "name": "participation_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "participation_form_nomination_company_location_placeholder": { + "name": "participation_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "participation_form_nomination_contact_eyebrow": { + "name": "participation_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "participation_form_nomination_contact_heading": { + "name": "participation_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "participation_form_nomination_contact_name_label": { + "name": "participation_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "participation_form_nomination_contact_name_placeholder": { + "name": "participation_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "participation_form_nomination_contact_email_label": { + "name": "participation_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "participation_form_nomination_contact_email_placeholder": { + "name": "participation_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "participation_form_nomination_contact_relationship_label": { + "name": "participation_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "participation_form_nomination_contact_relationship_placeholder": { + "name": "participation_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "participation_form_nomination_contact_footnote": { + "name": "participation_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "participation_form_nomination_summary_eyebrow": { + "name": "participation_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "participation_form_nomination_summary_heading": { + "name": "participation_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "participation_form_nomination_summary_company_label": { + "name": "participation_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "participation_form_nomination_summary_industry_label": { + "name": "participation_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "participation_form_nomination_summary_location_label": { + "name": "participation_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "participation_form_nomination_summary_nominated_by_label": { + "name": "participation_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "participation_form_nomination_summary_empty_value": { + "name": "participation_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "participation_form_success_self_heading": { + "name": "participation_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "participation_form_success_nomination_heading": { + "name": "participation_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "participation_form_success_self_prefix": { + "name": "participation_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "participation_form_success_self_middle": { + "name": "participation_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "participation_form_success_self_suffix": { + "name": "participation_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "participation_form_success_nomination_prefix": { + "name": "participation_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "participation_form_success_nomination_middle": { + "name": "participation_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "participation_form_success_nomination_suffix": { + "name": "participation_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "about_hero_background_image_id": { + "name": "about_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_hero_image_alt": { + "name": "about_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "about_hero_eyebrow": { + "name": "about_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "about_hero_heading": { + "name": "about_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WERTE, DIE\nBAYERN BEWEGEN'" + }, + "about_hero_highlight": { + "name": "about_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERN BEWEGEN'" + }, + "about_hero_description": { + "name": "about_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Seit 2005 ehrt der BMP herausragende Leistungen im bayerischen Mittelstand. Entdecken Sie die Geschichte, die Vision und die Menschen dahinter.'" + }, + "about_hero_primary_cta_label": { + "name": "about_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "about_hero_primary_cta_url": { + "name": "about_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "about_hero_secondary_cta_label": { + "name": "about_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "about_hero_secondary_cta_url": { + "name": "about_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "about_prize_image_id": { + "name": "about_prize_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_prize_image_alt": { + "name": "about_prize_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Preisverleihung'" + }, + "about_prize_eyebrow": { + "name": "about_prize_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was ist der Preis?'" + }, + "about_prize_heading": { + "name": "about_prize_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DER BAYERISCHE\nMITTELSTANDSPREIS'" + }, + "about_prize_image_label": { + "name": "about_prize_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Preisverleihung · München'" + }, + "about_mittelstand_image_id": { + "name": "about_mittelstand_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_mittelstand_image_alt": { + "name": "about_mittelstand_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstand'" + }, + "about_mittelstand_eyebrow": { + "name": "about_mittelstand_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Relevanz & Zielsetzung'" + }, + "about_mittelstand_heading": { + "name": "about_mittelstand_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEDEUTUNG FÜR\nDEN MITTELSTAND'" + }, + "about_highlights_fallback_image_id": { + "name": "about_highlights_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "about_highlights_eyebrow": { + "name": "about_highlights_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger-Highlights'" + }, + "about_highlights_heading": { + "name": "about_highlights_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSGEZEICHNETE 2025'" + }, + "about_highlights_cta_label": { + "name": "about_highlights_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "about_highlights_cta_url": { + "name": "about_highlights_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "about_highlights_hover_label": { + "name": "about_highlights_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "about_highlights_fallback_winner_name": { + "name": "about_highlights_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_highlights_fallback_winner_category": { + "name": "about_highlights_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_highlights_fallback_winner_award_type": { + "name": "about_highlights_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "about_highlights_year": { + "name": "about_highlights_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 2025 + }, + "about_testimonials_eyebrow": { + "name": "about_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "about_testimonials_heading": { + "name": "about_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "about_testimonials_desktop_heading": { + "name": "about_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "about_testimonials_year_prefix": { + "name": "about_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "about_testimonials_previous_label": { + "name": "about_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "about_testimonials_next_label": { + "name": "about_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "about_testimonials_slide_label_prefix": { + "name": "about_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "about_history_eyebrow": { + "name": "about_history_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geschichte & Meilensteine'" + }, + "about_history_heading": { + "name": "about_history_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20 JAHRE\nMITTELSTANDSEXZELLENZ'" + }, + "about_history_highlight": { + "name": "about_history_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTANDS'" + }, + "about_history_watermark": { + "name": "about_history_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20'" + }, + "about_goals_eyebrow": { + "name": "about_goals_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zielsetzung'" + }, + "about_goals_heading": { + "name": "about_goals_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WOFÜR WIR\nSTEHEN'" + }, + "about_values_eyebrow": { + "name": "about_values_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorteile & Werte'" + }, + "about_values_heading": { + "name": "about_values_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM DER\nBMP ZÄHLT'" + }, + "about_values_description": { + "name": "about_values_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Drei Dimensionen, die den Unterschied machen: für Ihr Unternehmen, Ihre Mitarbeitenden und Ihren Marktauftritt.'" + }, + "about_cta_eyebrow": { + "name": "about_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Starten Sie Ihre Reise'" + }, + "about_cta_heading": { + "name": "about_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN AUCH SIE GESCHICHTE'" + }, + "about_cta_description": { + "name": "about_cta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands. Die Teilnahmegebühr beträgt 0 EUR und die Teilnahme lohnt sich in jeder Phase.'" + }, + "about_cta_primary_cta_label": { + "name": "about_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "about_cta_primary_cta_url": { + "name": "about_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "about_cta_secondary_prefix": { + "name": "about_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "about_cta_secondary_cta_label": { + "name": "about_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "about_cta_secondary_cta_url": { + "name": "about_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "impressum_hero_back_label": { + "name": "impressum_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "impressum_hero_eyebrow": { + "name": "impressum_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "impressum_hero_heading": { + "name": "impressum_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Impressum'" + }, + "impressum_hero_description_html": { + "name": "impressum_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Angaben gemäß §5 TMG · Zur Datenschutzerklärung →'" + }, + "impressum_navigation_toc_title": { + "name": "impressum_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "impressum_navigation_side_link_label": { + "name": "impressum_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutzerklärung →'" + }, + "impressum_navigation_side_link_url": { + "name": "impressum_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/datenschutz'" + }, + "datenschutz_hero_back_label": { + "name": "datenschutz_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "datenschutz_hero_eyebrow": { + "name": "datenschutz_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "datenschutz_hero_heading": { + "name": "datenschutz_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutz­erklärung'" + }, + "datenschutz_hero_description_html": { + "name": "datenschutz_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zuletzt aktualisiert: April 2026 · Zum Impressum →'" + }, + "datenschutz_navigation_toc_title": { + "name": "datenschutz_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "datenschutz_navigation_side_link_label": { + "name": "datenschutz_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Impressum →'" + }, + "datenschutz_navigation_side_link_url": { + "name": "datenschutz_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/impressum'" + }, + "preistraeger_index_hero_image_id": { + "name": "preistraeger_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_index_hero_image_url": { + "name": "preistraeger_index_hero_image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=2000'" + }, + "preistraeger_index_hero_image_alt": { + "name": "preistraeger_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung'" + }, + "preistraeger_index_breadcrumb_label": { + "name": "preistraeger_index_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "preistraeger_index_count_label": { + "name": "preistraeger_index_count_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "preistraeger_index_empty_message": { + "name": "preistraeger_index_empty_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Preisträger für diese Auswahl.'" + }, + "preistraeger_index_card_fallback_image_id": { + "name": "preistraeger_index_card_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_index_card_hover_label": { + "name": "preistraeger_index_card_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr erfahren'" + }, + "preistraeger_index_card_fallback_winner_name": { + "name": "preistraeger_index_card_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "preistraeger_index_card_fallback_winner_category": { + "name": "preistraeger_index_card_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "preistraeger_index_card_fallback_winner_award_type": { + "name": "preistraeger_index_card_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "preistraeger_index_card_fallback_winner_location": { + "name": "preistraeger_index_card_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "preistraeger_index_card_fallback_winner_industry": { + "name": "preistraeger_index_card_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "preistraeger_index_cta_text": { + "name": "preistraeger_index_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie der nächste Preisträger.'" + }, + "preistraeger_index_cta_primary_cta_label": { + "name": "preistraeger_index_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "preistraeger_index_cta_primary_cta_url": { + "name": "preistraeger_index_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "preistraeger_index_cta_secondary_prefix": { + "name": "preistraeger_index_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Arbeit unterstützen:'" + }, + "preistraeger_index_cta_secondary_cta_label": { + "name": "preistraeger_index_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "preistraeger_index_cta_secondary_cta_url": { + "name": "preistraeger_index_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "press_index_hero_image_id": { + "name": "press_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_hero_image_alt": { + "name": "press_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse BMP'" + }, + "press_index_hero_eyebrow": { + "name": "press_index_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse & Newsroom'" + }, + "press_index_hero_heading": { + "name": "press_index_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS &\nBERICHTERSTATTUNG.'" + }, + "press_index_hero_description": { + "name": "press_index_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Termine, Pressemitteilungen und Medienmaterial rund um den Bayerischen Mittelstandspreis.'" + }, + "press_index_events_eyebrow": { + "name": "press_index_events_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termine 2026'" + }, + "press_index_events_heading": { + "name": "press_index_events_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS RUND UM DEN PREIS.'" + }, + "press_index_events_description": { + "name": "press_index_events_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Jurysitzung bis zur festlichen Gala – alle Veranstaltungen auf einen Blick.'" + }, + "press_index_events_detail_label": { + "name": "press_index_events_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "press_index_events_default_status_label": { + "name": "press_index_events_default_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geplant'" + }, + "press_index_events_open_status_label": { + "name": "press_index_events_open_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anmeldung offen'" + }, + "press_index_events_missing_title_label": { + "name": "press_index_events_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "press_index_events_missing_date_label": { + "name": "press_index_events_missing_date_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "press_index_events_missing_location_label": { + "name": "press_index_events_missing_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "press_index_events_missing_category_label": { + "name": "press_index_events_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "press_index_events_collection_fallback_image_id": { + "name": "press_index_events_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_news_eyebrow": { + "name": "press_index_news_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "press_index_news_heading": { + "name": "press_index_news_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'NACHRICHTEN & EINBLICKE.'" + }, + "press_index_news_description": { + "name": "press_index_news_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berichte, Hintergründe und Einblicke rund um den bayerischen Mittelstand und den BMP.'" + }, + "press_index_news_read_more_label": { + "name": "press_index_news_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "press_index_news_missing_title_label": { + "name": "press_index_news_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "press_index_news_missing_category_label": { + "name": "press_index_news_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "press_index_news_collection_fallback_image_id": { + "name": "press_index_news_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_downloads_eyebrow": { + "name": "press_index_downloads_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt & Material'" + }, + "press_index_downloads_heading": { + "name": "press_index_downloads_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PRESSE-MATERIAL & KONTAKT.'" + }, + "press_index_downloads_description": { + "name": "press_index_downloads_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie unser offizielles Material herunter oder kontaktieren Sie direkt unser Presseteam für individuelle Anfragen.'" + }, + "press_index_downloads_kit_label": { + "name": "press_index_downloads_kit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Download Presse-Kit'" + }, + "press_index_downloads_kit_meta": { + "name": "press_index_downloads_kit_meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip – 1,5 MB'" + }, + "press_index_downloads_kit_file_id": { + "name": "press_index_downloads_kit_file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "press_index_downloads_kit_url": { + "name": "press_index_downloads_kit_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/Print_BMP.zip'" + }, + "press_index_downloads_kit_download_name": { + "name": "press_index_downloads_kit_download_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip'" + }, + "press_index_downloads_contact_eyebrow": { + "name": "press_index_downloads_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt'" + }, + "press_index_downloads_contact_name": { + "name": "press_index_downloads_contact_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Tanja Meier'" + }, + "press_index_downloads_contact_lines": { + "name": "press_index_downloads_contact_lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'presse@bmp-bayern.de\n+49 89 123 456 99'" + }, + "press_index_accreditation_eyebrow": { + "name": "press_index_accreditation_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung'" + }, + "press_index_accreditation_heading": { + "name": "press_index_accreditation_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AKKREDITIERUNG ANFRAGEN.'" + }, + "press_index_accreditation_description": { + "name": "press_index_accreditation_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Melden Sie sich für unsere Presse-Verteiler an oder fordern Sie eine Akkreditierung für die Gala-Verleihung an.'" + }, + "press_index_accreditation_medium_label": { + "name": "press_index_accreditation_medium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Medium / Redaktion *'" + }, + "press_index_accreditation_name_label": { + "name": "press_index_accreditation_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name *'" + }, + "press_index_accreditation_email_label": { + "name": "press_index_accreditation_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail-Adresse *'" + }, + "press_index_accreditation_submit_label": { + "name": "press_index_accreditation_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung anfragen'" + }, + "press_index_accreditation_success_heading": { + "name": "press_index_accreditation_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "press_index_accreditation_success_message": { + "name": "press_index_accreditation_success_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank für Ihre Akkreditierungsanfrage. Unser Presseteam meldet sich zeitnah bei Ihnen.'" + }, + "form_upload_hero_eyebrow": { + "name": "form_upload_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026 – Bewerbungsportal'" + }, + "form_upload_hero_heading": { + "name": "form_upload_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERLAGEN\nEINREICHEN'" + }, + "form_upload_hero_description": { + "name": "form_upload_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie Ihre Bewerbungsunterlagen sicher hoch. Alle Einreichungen werden vertraulich behandelt und direkt an die Jury weitergeleitet.'" + }, + "form_upload_breadcrumb_label": { + "name": "form_upload_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen'" + }, + "form_upload_requirements_eyebrow": { + "name": "form_upload_requirements_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was wird benötigt?'" + }, + "form_upload_requirements_heading": { + "name": "form_upload_requirements_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ANFORDERUNGEN & FRISTEN'" + }, + "form_upload_upload_eyebrow": { + "name": "form_upload_upload_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung'" + }, + "form_upload_upload_heading": { + "name": "form_upload_upload_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DATEIEN HOCHLADEN'" + }, + "form_upload_upload_drop_title": { + "name": "form_upload_upload_drop_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dateien hierher ziehen'" + }, + "form_upload_upload_drop_description": { + "name": "form_upload_upload_drop_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oder klicken zum Auswählen'" + }, + "form_upload_upload_accepted_formats": { + "name": "form_upload_upload_accepted_formats", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF\nDOCX\nXLSX\nPPT'" + }, + "form_upload_upload_file_remove_label": { + "name": "form_upload_upload_file_remove_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei entfernen'" + }, + "form_upload_upload_note_title": { + "name": "form_upload_upload_note_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis'" + }, + "form_upload_upload_note": { + "name": "form_upload_upload_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stellen Sie sicher, dass alle Pflichtdokumente vollständig sind, bevor Sie einreichen. Unvollständige Bewerbungen können nicht berücksichtigt werden.'" + }, + "form_upload_upload_selected_submit_prefix": { + "name": "form_upload_upload_selected_submit_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei'" + }, + "form_upload_upload_selected_submit_plural_suffix": { + "name": "form_upload_upload_selected_submit_plural_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'en'" + }, + "form_upload_upload_selected_submit_action": { + "name": "form_upload_upload_selected_submit_action", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'einreichen'" + }, + "form_upload_upload_empty_submit_label": { + "name": "form_upload_upload_empty_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Dateien ausgewählt'" + }, + "form_upload_upload_privacy_note": { + "name": "form_upload_upload_privacy_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mit der Einreichung stimmen Sie der Verarbeitung Ihrer Daten gemäß unserer Datenschutzerklärung zu.'" + }, + "form_upload_success_heading": { + "name": "form_upload_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung erfolgreich'" + }, + "form_upload_success_description": { + "name": "form_upload_success_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Unterlagen wurden übermittelt. Sie erhalten eine Bestätigung per E-Mail. Die Jury meldet sich bis August 2026.'" + }, + "form_upload_success_link_label": { + "name": "form_upload_success_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "form_upload_success_link_url": { + "name": "form_upload_success_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "form_upload_cta_eyebrow": { + "name": "form_upload_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Noch Fragen zur Einreichung?'" + }, + "form_upload_cta_contact_label": { + "name": "form_upload_cta_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "form_upload_cta_contact_url": { + "name": "form_upload_cta_contact_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "form_upload_cta_button_label": { + "name": "form_upload_cta_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "form_upload_cta_button_url": { + "name": "form_upload_cta_button_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "netzwerk_hero_image_id": { + "name": "netzwerk_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "netzwerk_hero_image_alt": { + "name": "netzwerk_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Netzwerk Preisverleihung'" + }, + "netzwerk_hero_eyebrow": { + "name": "netzwerk_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury & Partner'" + }, + "netzwerk_hero_heading": { + "name": "netzwerk_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS NETZWERK\nHINTER DEM AWARD.'" + }, + "netzwerk_hero_highlight": { + "name": "netzwerk_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AWARD.'" + }, + "netzwerk_hero_description": { + "name": "netzwerk_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis wird getragen von einem starken Netzwerk aus Schirmherrschaft, unabhängiger Fach-Jury und langjährigen Partnern aus Wirtschaft und Gesellschaft.'" + }, + "netzwerk_patronage_eyebrow": { + "name": "netzwerk_patronage_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Schirmherrschaft'" + }, + "netzwerk_patronage_heading": { + "name": "netzwerk_patronage_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin und Schirmherr'" + }, + "netzwerk_patronage_description": { + "name": "netzwerk_patronage_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'des Bayerischen Mittelstandspreises'" + }, + "netzwerk_patronage_greeting_eyebrow": { + "name": "netzwerk_patronage_greeting_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grußwort'" + }, + "netzwerk_patronage_greeting_role": { + "name": "netzwerk_patronage_greeting_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin'" + }, + "netzwerk_patronage_greeting_name": { + "name": "netzwerk_patronage_greeting_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ilse Aigner MdL'" + }, + "netzwerk_patronage_greeting_title_line1": { + "name": "netzwerk_patronage_greeting_title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Präsidentin des Bayerischen Landtags'" + }, + "netzwerk_patronage_greeting_title_line2": { + "name": "netzwerk_patronage_greeting_title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerische Staatsministerin für Wirtschaft a.D.'" + }, + "netzwerk_patronage_greeting_quote": { + "name": "netzwerk_patronage_greeting_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Der Bayerische Mittelstandspreis steht für das, was Bayern stark macht: Unternehmergeist, Verantwortung und Qualität. Mit großer Freude übernehme ich erneut die Schirmherrschaft für diesen bedeutenden Preis.“'" + }, + "netzwerk_patronage_greeting_attribution": { + "name": "netzwerk_patronage_greeting_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'– Ilse Aigner MdL, Präsidentin des Bayerischen Landtags'" + }, + "netzwerk_jury_intro_eyebrow": { + "name": "netzwerk_jury_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wer entscheidet?'" + }, + "netzwerk_jury_intro_heading": { + "name": "netzwerk_jury_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNABHÄNGIGE EXPERTISE FÜR DEN MITTELSTAND.'" + }, + "netzwerk_jury_intro_description": { + "name": "netzwerk_jury_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises besteht ausschließlich aus ehrenamtlich tätigen Expertinnen und Experten. Kein Mitglied steht in wirtschaftlicher Verbindung zu einem Bewerber – Transparenz und Unparteilichkeit sind die Grundpfeiler unseres Verfahrens.'" + }, + "netzwerk_jury_eyebrow": { + "name": "netzwerk_jury_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Gremium'" + }, + "netzwerk_jury_heading": { + "name": "netzwerk_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNSERE JURY 2026'" + }, + "netzwerk_jury_description": { + "name": "netzwerk_jury_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unabhängige Expertinnen und Experten aus Wirtschaft, Wissenschaft und Verbänden, für einen vollständig unabhängigen Bewertungsprozess.'" + }, + "netzwerk_jury_chair_badge": { + "name": "netzwerk_jury_chair_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury-Vorsitz'" + }, + "netzwerk_jury_note": { + "name": "netzwerk_jury_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis: Einzelne Persönlichkeiten engagieren sich sowohl in der Jury als auch als Partner des BMP – beide Rollen werden auf dieser Seite getrennt ausgewiesen.'" + }, + "netzwerk_expertise_eyebrow": { + "name": "netzwerk_expertise_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hintergrund & Expertise'" + }, + "netzwerk_expertise_heading": { + "name": "netzwerk_expertise_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIE BEWERTET DIE JURY?'" + }, + "netzwerk_expertise_quote": { + "name": "netzwerk_expertise_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des BMP ist vollständig von wirtschaftlichen Interessen unabhängig. Jede Entscheidung wird transparent nachvollzogen – das ist unser Versprechen an die Unternehmen Bayerns.'" + }, + "netzwerk_expertise_quote_attribution": { + "name": "netzwerk_expertise_quote_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Prof. Dr. Klaus Bergmann, Juryvorsitzender'" + }, + "netzwerk_partners_eyebrow": { + "name": "netzwerk_partners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netzwerkqualität'" + }, + "netzwerk_partners_heading": { + "name": "netzwerk_partners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PARTNER & SPONSOREN'" + }, + "netzwerk_partners_description": { + "name": "netzwerk_partners_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Partner in drei Kategorien: Hauptsponsoren, Medienpartner und weitere Sponsoren. Klicken für Details.'" + }, + "netzwerk_partners_detail_label": { + "name": "netzwerk_partners_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "netzwerk_partners_premium_label": { + "name": "netzwerk_partners_premium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Premium'" + }, + "netzwerk_partners_default_logo_color": { + "name": "netzwerk_partners_default_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#111D55'" + }, + "netzwerk_partners_modal_industry_label": { + "name": "netzwerk_partners_modal_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "netzwerk_partners_modal_location_label": { + "name": "netzwerk_partners_modal_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "netzwerk_partners_modal_web_label": { + "name": "netzwerk_partners_modal_web_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Web'" + }, + "netzwerk_partners_modal_about_label": { + "name": "netzwerk_partners_modal_about_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "netzwerk_partners_modal_website_label": { + "name": "netzwerk_partners_modal_website_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen'" + }, + "netzwerk_partners_modal_close_label": { + "name": "netzwerk_partners_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "netzwerk_partners_modal_footer_title": { + "name": "netzwerk_partners_modal_footer_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis 2026'" + }, + "netzwerk_partners_modal_footer_role_prefix": { + "name": "netzwerk_partners_modal_footer_role_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Offizieller'" + }, + "netzwerk_sponsoring_eyebrow": { + "name": "netzwerk_sponsoring_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wachstum durch Partnerschaft'" + }, + "netzwerk_sponsoring_heading": { + "name": "netzwerk_sponsoring_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIR FREUEN UNS ÜBER NEUE SPONSOREN.'" + }, + "netzwerk_sponsoring_description": { + "name": "netzwerk_sponsoring_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Positionieren Sie Ihre Marke im exklusivsten Netzwerk des bayerischen Mittelstands – mit maßgeschneiderten Sponsoring-Paketen.'" + }, + "netzwerk_sponsoring_image_id": { + "name": "netzwerk_sponsoring_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "netzwerk_sponsoring_image_alt": { + "name": "netzwerk_sponsoring_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "netzwerk_sponsoring_image_label": { + "name": "netzwerk_sponsoring_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "netzwerk_sponsoring_form_eyebrow": { + "name": "netzwerk_sponsoring_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sponsoring 2026'" + }, + "netzwerk_sponsoring_footnote_prefix": { + "name": "netzwerk_sponsoring_footnote_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "netzwerk_sponsoring_footnote_label": { + "name": "netzwerk_sponsoring_footnote_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "netzwerk_sponsoring_footnote_url": { + "name": "netzwerk_sponsoring_footnote_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "netzwerk_sponsoring_form_step1_eyebrow": { + "name": "netzwerk_sponsoring_form_step1_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1 – Paket wählen'" + }, + "netzwerk_sponsoring_form_step1_heading": { + "name": "netzwerk_sponsoring_form_step1_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Interesse an'" + }, + "netzwerk_sponsoring_form_step2_eyebrow": { + "name": "netzwerk_sponsoring_form_step2_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 2 – Unternehmen'" + }, + "netzwerk_sponsoring_form_step2_heading": { + "name": "netzwerk_sponsoring_form_step2_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Unternehmen'" + }, + "netzwerk_sponsoring_form_company_label": { + "name": "netzwerk_sponsoring_form_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen *'" + }, + "netzwerk_sponsoring_form_company_placeholder": { + "name": "netzwerk_sponsoring_form_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "netzwerk_sponsoring_form_industry_label": { + "name": "netzwerk_sponsoring_form_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "netzwerk_sponsoring_form_industry_placeholder": { + "name": "netzwerk_sponsoring_form_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Finanzdienstleistungen'" + }, + "netzwerk_sponsoring_form_step3_eyebrow": { + "name": "netzwerk_sponsoring_form_step3_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 3 – Kontakt'" + }, + "netzwerk_sponsoring_form_step3_heading": { + "name": "netzwerk_sponsoring_form_step3_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner'" + }, + "netzwerk_sponsoring_form_contact_label": { + "name": "netzwerk_sponsoring_form_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner *'" + }, + "netzwerk_sponsoring_form_contact_placeholder": { + "name": "netzwerk_sponsoring_form_contact_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "netzwerk_sponsoring_form_email_label": { + "name": "netzwerk_sponsoring_form_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail *'" + }, + "netzwerk_sponsoring_form_email_placeholder": { + "name": "netzwerk_sponsoring_form_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "netzwerk_sponsoring_form_back_label": { + "name": "netzwerk_sponsoring_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "netzwerk_sponsoring_form_next_label": { + "name": "netzwerk_sponsoring_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "netzwerk_sponsoring_form_submit_label": { + "name": "netzwerk_sponsoring_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Exposé anfordern'" + }, + "netzwerk_sponsoring_form_required_package_error": { + "name": "netzwerk_sponsoring_form_required_package_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen Sie ein Paket.'" + }, + "netzwerk_sponsoring_form_required_field_error": { + "name": "netzwerk_sponsoring_form_required_field_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "netzwerk_sponsoring_form_invalid_email_error": { + "name": "netzwerk_sponsoring_form_invalid_email_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "netzwerk_sponsoring_form_done_label": { + "name": "netzwerk_sponsoring_form_done_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "netzwerk_sponsoring_form_success_heading": { + "name": "netzwerk_sponsoring_form_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "netzwerk_sponsoring_form_success_message_prefix": { + "name": "netzwerk_sponsoring_form_success_message_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank,'" + }, + "netzwerk_sponsoring_form_success_message_suffix": { + "name": "netzwerk_sponsoring_form_success_message_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen unser Sponsoring-Exposé innerhalb von 48 Stunden zu.'" + }, + "netzwerk_sponsoring_form_footer_text": { + "name": "netzwerk_sponsoring_form_footer_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns innerhalb von 48 Stunden.'" + }, + "mitglied_werden_header_brand_label": { + "name": "mitglied_werden_header_brand_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026'" + }, + "mitglied_werden_header_back_label": { + "name": "mitglied_werden_header_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "mitglied_werden_header_back_url": { + "name": "mitglied_werden_header_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/'" + }, + "mitglied_werden_hero_image_id": { + "name": "mitglied_werden_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mitglied_werden_hero_image_alt": { + "name": "mitglied_werden_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitgliedschaft'" + }, + "mitglied_werden_hero_eyebrow": { + "name": "mitglied_werden_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitgliedschaft'" + }, + "mitglied_werden_hero_heading": { + "name": "mitglied_werden_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DEIN WEG ZU UNS.'" + }, + "mitglied_werden_hero_description": { + "name": "mitglied_werden_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis lebt vom Engagement seiner Mitglieder.\nEine Mitgliedschaft ist Unterstützung, damit der Preis weiterhin unabhängig\nund kostenlos umgesetzt werden kann.'" + }, + "mitglied_werden_benefits_eyebrow": { + "name": "mitglied_werden_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Deine Vorteile'" + }, + "mitglied_werden_benefits_heading": { + "name": "mitglied_werden_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS DU GEWINNST.'" + }, + "mitglied_werden_about_eyebrow": { + "name": "mitglied_werden_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Verein'" + }, + "mitglied_werden_about_heading": { + "name": "mitglied_werden_about_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER WIR SIND.'" + }, + "mitglied_werden_about_descriptor": { + "name": "mitglied_werden_about_descriptor", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis e.V., eingetragener gemeinnütziger Verein'" + }, + "mitglied_werden_pricing_eyebrow": { + "name": "mitglied_werden_pricing_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitgliedsbeitrag'" + }, + "mitglied_werden_pricing_heading": { + "name": "mitglied_werden_pricing_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR BEITRAG.'" + }, + "mitglied_werden_pricing_employee_label": { + "name": "mitglied_werden_pricing_employee_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anzahl Mitarbeiter wählen'" + }, + "mitglied_werden_pricing_select_placeholder": { + "name": "mitglied_werden_pricing_select_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen…'" + }, + "mitglied_werden_pricing_option_suffix": { + "name": "mitglied_werden_pricing_option_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "mitglied_werden_pricing_result_eyebrow": { + "name": "mitglied_werden_pricing_result_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Beitragsübersicht'" + }, + "mitglied_werden_pricing_annual_net_label": { + "name": "mitglied_werden_pricing_annual_net_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (netto)'" + }, + "mitglied_werden_pricing_annual_gross_label": { + "name": "mitglied_werden_pricing_annual_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (19 % MwSt.)'" + }, + "mitglied_werden_pricing_annual_gross_short_label": { + "name": "mitglied_werden_pricing_annual_gross_short_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (brutto)'" + }, + "mitglied_werden_pricing_admission_gross_label": { + "name": "mitglied_werden_pricing_admission_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aufnahmegebühr (brutto)'" + }, + "mitglied_werden_pricing_total_year_one_label": { + "name": "mitglied_werden_pricing_total_year_one_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gesamt Jahr 1 (anteilig)'" + }, + "mitglied_werden_pricing_footnote": { + "name": "mitglied_werden_pricing_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'* Anteilig ab nächstem Monatsersten bis 31.12. des laufenden Jahres. Ab dem Folgejahr gilt der volle Jahresbeitrag.'" + }, + "mitglied_werden_pricing_cta_label": { + "name": "mitglied_werden_pricing_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden →'" + }, + "mitglied_werden_pricing_cta_href": { + "name": "mitglied_werden_pricing_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "mitglied_werden_pricing_table_toggle_label": { + "name": "mitglied_werden_pricing_table_toggle_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vollständige Beitragsstaffel'" + }, + "mitglied_werden_pricing_table_employee_header": { + "name": "mitglied_werden_pricing_table_employee_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "mitglied_werden_pricing_table_net_header": { + "name": "mitglied_werden_pricing_table_net_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netto / Jahr'" + }, + "mitglied_werden_pricing_table_gross_header": { + "name": "mitglied_werden_pricing_table_gross_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Brutto / Jahr'" + }, + "mitglied_werden_pricing_table_note_prefix": { + "name": "mitglied_werden_pricing_table_note_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zzgl. einmalige Aufnahmegebühr'" + }, + "mitglied_werden_pricing_table_note_suffix": { + "name": "mitglied_werden_pricing_table_note_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'(brutto) im ersten Jahr. Alle Angaben inkl. 19 % MwSt.'" + }, + "mitglied_werden_pricing_vat_rate": { + "name": "mitglied_werden_pricing_vat_rate", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0.19 + }, + "mitglied_werden_pricing_admission_fee_net": { + "name": "mitglied_werden_pricing_admission_fee_net", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 500 + }, + "mitglied_werden_form_intro_eyebrow": { + "name": "mitglied_werden_form_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt beitreten'" + }, + "mitglied_werden_form_intro_heading": { + "name": "mitglied_werden_form_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DU BIST DABEI.'" + }, + "mitglied_werden_form_intro_description": { + "name": "mitglied_werden_form_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fülle das Formular aus und wir melden uns innerhalb von 48 Stunden bei dir.\nDie Mitgliedschaft beginnt mit Bestätigung durch den Vorstand.'" + }, + "mitglied_werden_form_intro_image_id": { + "name": "mitglied_werden_form_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mitglied_werden_form_intro_image_alt": { + "name": "mitglied_werden_form_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder'" + }, + "mitglied_werden_form_intro_image_label": { + "name": "mitglied_werden_form_intro_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder 2025'" + }, + "mitglied_werden_wizard": { + "name": "mitglied_werden_wizard", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"requiredSuffix\":\"*\",\"optionalSuffix\":\"(optional)\",\"stepCounterTemplate\":\"Schritt {step} von {total}\",\"reviewFallback\":\"–\",\"nav\":{\"backLabel\":\"← Zurück\",\"nextLabel\":\"Weiter →\",\"submitLabel\":\"Mitgliedschaftsantrag verbindlich einreichen\"},\"steps\":[{\"id\":1,\"label\":\"Unternehmen\"},{\"id\":2,\"label\":\"Kontakt\"},{\"id\":3,\"label\":\"Details\"},{\"id\":4,\"label\":\"Zahlung\"},{\"id\":5,\"label\":\"Abschluss\"}],\"validation\":{\"required\":\"Pflichtfeld\",\"select\":\"Bitte wählen\",\"postalCode\":\"5-stellige PLZ erforderlich\",\"email\":\"Gültige E-Mail erforderlich\",\"iban\":\"Ungültige IBAN (DE, 22 Zeichen)\",\"sepa\":\"Bitte SEPA-Mandat bestätigen\"},\"tiers\":[{\"max\":10,\"label\":\"bis 10\",\"annual\":480},{\"max\":20,\"label\":\"bis 20\",\"annual\":600},{\"max\":50,\"label\":\"bis 50\",\"annual\":900},{\"max\":100,\"label\":\"bis 100\",\"annual\":1200},{\"max\":250,\"label\":\"bis 250\",\"annual\":2400},{\"max\":1000,\"label\":\"bis 1.000\",\"annual\":3600}],\"vatRate\":0.19,\"admissionFeeNet\":500,\"pricingSummary\":{\"eyebrow\":\"Beitragsübersicht\",\"annualNetLabel\":\"Jahresbeitrag (netto)\",\"annualGrossLabel\":\"Jahresbeitrag (brutto)\",\"admissionGrossLabel\":\"Aufnahmegebühr (brutto)\",\"totalYearOneLabel\":\"Gesamt Jahr 1 (anteilig)\"},\"fields\":{\"company\":{\"title\":\"Ihr Unternehmen\",\"subtitle\":\"Angaben zum antragstellenden Unternehmen\",\"legalForms\":[\"GmbH\",\"GmbH & Co. KG\",\"AG\",\"UG\",\"KG\",\"OHG\",\"GbR\",\"Einzelunternehmen\",\"e.K.\",\"Sonstige\"],\"companyNameLabel\":\"Firmenname\",\"companyNamePlaceholder\":\"Muster GmbH\",\"legalFormLabel\":\"Rechtsform\",\"employeesLabel\":\"Anzahl Mitarbeiter\",\"streetLabel\":\"Straße & Hausnummer\",\"streetPlaceholder\":\"Musterstraße 42\",\"postalCodeLabel\":\"PLZ\",\"postalCodePlaceholder\":\"12345\",\"cityLabel\":\"Ort\",\"cityPlaceholder\":\"Berlin\",\"websiteLabel\":\"Website\",\"websitePlaceholder\":\"https://www.ihrewebsite.de\"},\"contact\":{\"title\":\"Kontaktperson\",\"subtitle\":\"Ansprechpartner für die Mitgliedschaft\",\"salutations\":[\"Herr\",\"Frau\",\"Divers\"],\"salutationLabel\":\"Anrede\",\"firstNameLabel\":\"Vorname\",\"firstNamePlaceholder\":\"Max\",\"lastNameLabel\":\"Nachname\",\"lastNamePlaceholder\":\"Mustermann\",\"positionLabel\":\"Position / Funktion\",\"positionPlaceholder\":\"z. B. Geschäftsführer\",\"emailLabel\":\"E-Mail-Adresse\",\"emailPlaceholder\":\"max@muster.de\",\"phoneLabel\":\"Telefon\",\"phonePlaceholder\":\"+49 30 123456\"},\"details\":{\"title\":\"Mitgliedschaft & Details\",\"subtitle\":\"Beitragsübersicht und Eintrittsdatum\",\"entryDateLabel\":\"Gewünschtes Eintrittsdatum\",\"referralLabel\":\"Wie wurden Sie aufmerksam?\",\"referralOptions\":[\"Empfehlung\",\"Veranstaltung\",\"Google\",\"Social Media\",\"Presse\",\"Sonstiges\"],\"motivationLabel\":\"Ihre Motivation (optional)\",\"motivationPlaceholder\":\"Was erhoffen Sie sich von der Mitgliedschaft beim BMP e.V.?\",\"motivationMaxLength\":500},\"payment\":{\"title\":\"SEPA-Lastschriftmandat\",\"subtitle\":\"Bankverbindung für den Beitragseinzug\",\"mandateText\":\"Ich ermächtige den BMP e.V., Zahlungen von meinem Konto mittels Lastschrift einzuziehen. Zugleich weise ich mein Kreditinstitut an, die vom BMP e.V. auf mein Konto gezogenen Lastschriften einzulösen. Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des belasteten Betrages verlangen. Es gelten dabei die mit meinem Kreditinstitut vereinbarten Bedingungen. Die Mandatsreferenz wird separat mitgeteilt. Gläubiger-Identifikationsnummer: DE98ZZZ09999999999.\",\"accountHolderLabel\":\"Kontoinhaber\",\"accountHolderPlaceholder\":\"Max Mustermann\",\"ibanLabel\":\"IBAN\",\"ibanPlaceholder\":\"DE00 0000 0000 0000 0000 00\",\"ibanValidLabel\":\"✓ OK\",\"ibanPendingLabel\":\"…\",\"bicLabel\":\"BIC\",\"bicPlaceholder\":\"BELADEBEXXX\",\"bicAutoPlaceholder\":\"Wird ausgefüllt\",\"bankLabel\":\"Bank / Kreditinstitut\",\"bankPlaceholder\":\"Berliner Sparkasse\",\"sepaCheckboxLabel\":\"Ich bestätige das SEPA-Lastschriftmandat und ermächtige den BMP e.V. zum Einzug.\"},\"summary\":{\"title\":\"Zusammenfassung & Abschluss\",\"subtitle\":\"Bitte prüfen Sie Ihre Angaben\",\"companyAccordion\":\"Unternehmen\",\"contactAccordion\":\"Kontaktperson\",\"paymentAccordion\":\"Zahlung\",\"requiredTitle\":\"Pflichtbestätigungen\",\"optionalTitle\":\"Optional\",\"labels\":{\"companyName\":\"Firmenname\",\"legalForm\":\"Rechtsform\",\"address\":\"Adresse\",\"employees\":\"Mitarbeiter\",\"website\":\"Website\",\"name\":\"Name\",\"position\":\"Position\",\"email\":\"E-Mail\",\"phone\":\"Telefon\",\"accountHolder\":\"Kontoinhaber\",\"iban\":\"IBAN\",\"bic\":\"BIC\",\"bank\":\"Bank\",\"entryDate\":\"Eintrittsdatum\",\"annualContribution\":\"Jahresbeitrag\"},\"consents\":{\"satzung\":\"Ich habe die Satzung des BMP e.V. gelesen und erkenne sie an.\",\"datenschutz\":\"Ich habe die Datenschutzerklärung gelesen und stimme zu.\",\"widerruf\":\"Ich habe die Kündigungsfrist zur Kenntnis genommen (1 Jahr zum Jahresende).\",\"newsletter\":\"Ich möchte elektronische Informationen, Einladungen und den Newsletter erhalten.\",\"websitePub\":\"Meinen Firmennamen auf der Website des BMP e.V. als Mitglied veröffentlichen.\"}}},\"success\":{\"heading\":\"Ihr Antrag ist eingegangen.\",\"message\":\"Wir melden uns innerhalb von 5 Werktagen bei Ihnen.\",\"nextStepsTitle\":\"Ihre nächsten Schritte\",\"steps\":[{\"num\":\"1\",\"title\":\"Bestätigung per E-Mail\",\"desc\":\"Sie erhalten in Kürze eine Eingangsbestätigung.\"},{\"num\":\"2\",\"title\":\"Prüfung durch den Vorstand\",\"desc\":\"Ihr Antrag wird in der nächsten Sitzung behandelt.\"},{\"num\":\"3\",\"title\":\"Willkommen im BMP e.V.\",\"desc\":\"Nach Bestätigung erhalten Sie Ihre Mitgliedsdaten.\"}]}}'" + }, + "mitglied_werden_testimonials_eyebrow": { + "name": "mitglied_werden_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Mitglieder'" + }, + "mitglied_werden_testimonials_heading": { + "name": "mitglied_werden_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS MITGLIEDER SAGEN.'" + }, + "mitglied_werden_faq_eyebrow": { + "name": "mitglied_werden_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige Fragen'" + }, + "mitglied_werden_faq_heading": { + "name": "mitglied_werden_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'FAQ.'" + }, + "mitglied_werden_bottom_cta_eyebrow": { + "name": "mitglied_werden_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werde Teil des BMP'" + }, + "mitglied_werden_bottom_cta_heading": { + "name": "mitglied_werden_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERSTÜTZE. NETZWERKE. WIRKE.'" + }, + "mitglied_werden_bottom_cta_cta_label": { + "name": "mitglied_werden_bottom_cta_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden'" + }, + "mitglied_werden_bottom_cta_cta_href": { + "name": "mitglied_werden_bottom_cta_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "pages_hero_hero_media_idx": { + "name": "pages_hero_hero_media_idx", + "columns": [ + "hero_media_id" + ], + "isUnique": false + }, + "pages_home_hero_home_hero_background_image_idx": { + "name": "pages_home_hero_home_hero_background_image_idx", + "columns": [ + "home_hero_background_image_id" + ], + "isUnique": false + }, + "pages_home_quick_check_home_quick_check_image_idx": { + "name": "pages_home_quick_check_home_quick_check_image_idx", + "columns": [ + "home_quick_check_image_id" + ], + "isUnique": false + }, + "pages_home_intro_home_intro_image_idx": { + "name": "pages_home_intro_home_intro_image_idx", + "columns": [ + "home_intro_image_id" + ], + "isUnique": false + }, + "pages_home_winners_home_winners_fallback_image_idx": { + "name": "pages_home_winners_home_winners_fallback_image_idx", + "columns": [ + "home_winners_fallback_image_id" + ], + "isUnique": false + }, + "pages_home_benefits_home_benefits_image_idx": { + "name": "pages_home_benefits_home_benefits_image_idx", + "columns": [ + "home_benefits_image_id" + ], + "isUnique": false + }, + "pages_home_application_home_application_award_image_idx": { + "name": "pages_home_application_home_application_award_image_idx", + "columns": [ + "home_application_award_image_id" + ], + "isUnique": false + }, + "pages_home_video_modal_home_video_modal_video_idx": { + "name": "pages_home_video_modal_home_video_modal_video_idx", + "columns": [ + "home_video_modal_video_id" + ], + "isUnique": false + }, + "pages_contact_hero_contact_hero_background_image_idx": { + "name": "pages_contact_hero_contact_hero_background_image_idx", + "columns": [ + "contact_hero_background_image_id" + ], + "isUnique": false + }, + "pages_contact_info_contact_info_form_image_idx": { + "name": "pages_contact_info_contact_info_form_image_idx", + "columns": [ + "contact_info_form_image_id" + ], + "isUnique": false + }, + "pages_participation_hero_participation_hero_background_i_idx": { + "name": "pages_participation_hero_participation_hero_background_i_idx", + "columns": [ + "participation_hero_background_image_id" + ], + "isUnique": false + }, + "pages_participation_application_form_participation_appli_idx": { + "name": "pages_participation_application_form_participation_appli_idx", + "columns": [ + "participation_application_form_image_id" + ], + "isUnique": false + }, + "pages_about_hero_about_hero_background_image_idx": { + "name": "pages_about_hero_about_hero_background_image_idx", + "columns": [ + "about_hero_background_image_id" + ], + "isUnique": false + }, + "pages_about_prize_about_prize_image_idx": { + "name": "pages_about_prize_about_prize_image_idx", + "columns": [ + "about_prize_image_id" + ], + "isUnique": false + }, + "pages_about_mittelstand_about_mittelstand_image_idx": { + "name": "pages_about_mittelstand_about_mittelstand_image_idx", + "columns": [ + "about_mittelstand_image_id" + ], + "isUnique": false + }, + "pages_about_highlights_about_highlights_fallback_image_idx": { + "name": "pages_about_highlights_about_highlights_fallback_image_idx", + "columns": [ + "about_highlights_fallback_image_id" + ], + "isUnique": false + }, + "pages_preistraeger_index_hero_preistraeger_index_hero_im_idx": { + "name": "pages_preistraeger_index_hero_preistraeger_index_hero_im_idx", + "columns": [ + "preistraeger_index_hero_image_id" + ], + "isUnique": false + }, + "pages_preistraeger_index_card_preistraeger_index_card_fa_idx": { + "name": "pages_preistraeger_index_card_preistraeger_index_card_fa_idx", + "columns": [ + "preistraeger_index_card_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_hero_press_index_hero_image_idx": { + "name": "pages_press_index_hero_press_index_hero_image_idx", + "columns": [ + "press_index_hero_image_id" + ], + "isUnique": false + }, + "pages_press_index_events_press_index_events_collection_f_idx": { + "name": "pages_press_index_events_press_index_events_collection_f_idx", + "columns": [ + "press_index_events_collection_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_news_press_index_news_collection_fallb_idx": { + "name": "pages_press_index_news_press_index_news_collection_fallb_idx", + "columns": [ + "press_index_news_collection_fallback_image_id" + ], + "isUnique": false + }, + "pages_press_index_downloads_press_index_downloads_kit_fi_idx": { + "name": "pages_press_index_downloads_press_index_downloads_kit_fi_idx", + "columns": [ + "press_index_downloads_kit_file_id" + ], + "isUnique": false + }, + "pages_netzwerk_hero_netzwerk_hero_image_idx": { + "name": "pages_netzwerk_hero_netzwerk_hero_image_idx", + "columns": [ + "netzwerk_hero_image_id" + ], + "isUnique": false + }, + "pages_netzwerk_sponsoring_netzwerk_sponsoring_image_idx": { + "name": "pages_netzwerk_sponsoring_netzwerk_sponsoring_image_idx", + "columns": [ + "netzwerk_sponsoring_image_id" + ], + "isUnique": false + }, + "pages_mitglied_werden_hero_mitglied_werden_hero_image_idx": { + "name": "pages_mitglied_werden_hero_mitglied_werden_hero_image_idx", + "columns": [ + "mitglied_werden_hero_image_id" + ], + "isUnique": false + }, + "pages_mitglied_werden_form_intro_mitglied_werden_form_in_idx": { + "name": "pages_mitglied_werden_form_intro_mitglied_werden_form_in_idx", + "columns": [ + "mitglied_werden_form_intro_image_id" + ], + "isUnique": false + }, + "pages_meta_meta_image_idx": { + "name": "pages_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "pages_spa_path_idx": { + "name": "pages_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "pages_slug_idx": { + "name": "pages_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "pages_updated_at_idx": { + "name": "pages_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "pages_created_at_idx": { + "name": "pages_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "pages__status_idx": { + "name": "pages__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_hero_media_id_media_id_fk": { + "name": "pages_hero_media_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "hero_media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_hero_background_image_id_media_id_fk": { + "name": "pages_home_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_quick_check_image_id_media_id_fk": { + "name": "pages_home_quick_check_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_quick_check_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_intro_image_id_media_id_fk": { + "name": "pages_home_intro_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_winners_fallback_image_id_media_id_fk": { + "name": "pages_home_winners_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_winners_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_benefits_image_id_media_id_fk": { + "name": "pages_home_benefits_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_benefits_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_application_award_image_id_media_id_fk": { + "name": "pages_home_application_award_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_application_award_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_home_video_modal_video_id_media_id_fk": { + "name": "pages_home_video_modal_video_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "home_video_modal_video_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_contact_hero_background_image_id_media_id_fk": { + "name": "pages_contact_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "contact_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_contact_info_form_image_id_media_id_fk": { + "name": "pages_contact_info_form_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "contact_info_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_participation_hero_background_image_id_media_id_fk": { + "name": "pages_participation_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "participation_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_participation_application_form_image_id_media_id_fk": { + "name": "pages_participation_application_form_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "participation_application_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_hero_background_image_id_media_id_fk": { + "name": "pages_about_hero_background_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_prize_image_id_media_id_fk": { + "name": "pages_about_prize_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_prize_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_mittelstand_image_id_media_id_fk": { + "name": "pages_about_mittelstand_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_mittelstand_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_about_highlights_fallback_image_id_media_id_fk": { + "name": "pages_about_highlights_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "about_highlights_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_preistraeger_index_hero_image_id_media_id_fk": { + "name": "pages_preistraeger_index_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "preistraeger_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_preistraeger_index_card_fallback_image_id_media_id_fk": { + "name": "pages_preistraeger_index_card_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "preistraeger_index_card_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_hero_image_id_media_id_fk": { + "name": "pages_press_index_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_events_collection_fallback_image_id_media_id_fk": { + "name": "pages_press_index_events_collection_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_events_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_news_collection_fallback_image_id_media_id_fk": { + "name": "pages_press_index_news_collection_fallback_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_news_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_press_index_downloads_kit_file_id_media_id_fk": { + "name": "pages_press_index_downloads_kit_file_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "press_index_downloads_kit_file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_netzwerk_hero_image_id_media_id_fk": { + "name": "pages_netzwerk_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "netzwerk_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_netzwerk_sponsoring_image_id_media_id_fk": { + "name": "pages_netzwerk_sponsoring_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "netzwerk_sponsoring_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_mitglied_werden_hero_image_id_media_id_fk": { + "name": "pages_mitglied_werden_hero_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "mitglied_werden_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_mitglied_werden_form_intro_image_id_media_id_fk": { + "name": "pages_mitglied_werden_form_intro_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "mitglied_werden_form_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_meta_image_id_media_id_fk": { + "name": "pages_meta_image_id_media_id_fk", + "tableFrom": "pages", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "pages_rels": { + "name": "pages_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "pages_rels_order_idx": { + "name": "pages_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "pages_rels_parent_idx": { + "name": "pages_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "pages_rels_path_idx": { + "name": "pages_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "pages_rels_pages_id_idx": { + "name": "pages_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "pages_rels_posts_id_idx": { + "name": "pages_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "pages_rels_preistraeger_id_idx": { + "name": "pages_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "pages_rels_parent_fk": { + "name": "pages_rels_parent_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_pages_fk": { + "name": "pages_rels_pages_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_posts_fk": { + "name": "pages_rels_posts_fk", + "tableFrom": "pages_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_preistraeger_fk": { + "name": "pages_rels_preistraeger_fk", + "tableFrom": "pages_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_hero_links": { + "name": "_pages_v_version_hero_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_hero_links_order_idx": { + "name": "_pages_v_version_hero_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_hero_links_parent_id_idx": { + "name": "_pages_v_version_hero_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_hero_links_parent_id_fk": { + "name": "_pages_v_version_hero_links_parent_id_fk", + "tableFrom": "_pages_v_version_hero_links", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_cta_links": { + "name": "_pages_v_blocks_cta_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_cta_links_order_idx": { + "name": "_pages_v_blocks_cta_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_links_parent_id_idx": { + "name": "_pages_v_blocks_cta_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_cta_links_parent_id_fk": { + "name": "_pages_v_blocks_cta_links_parent_id_fk", + "tableFrom": "_pages_v_blocks_cta_links", + "tableTo": "_pages_v_blocks_cta", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_cta": { + "name": "_pages_v_blocks_cta", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_cta_order_idx": { + "name": "_pages_v_blocks_cta_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_parent_id_idx": { + "name": "_pages_v_blocks_cta_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_cta_path_idx": { + "name": "_pages_v_blocks_cta_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_cta_parent_id_fk": { + "name": "_pages_v_blocks_cta_parent_id_fk", + "tableFrom": "_pages_v_blocks_cta", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_content_columns": { + "name": "_pages_v_blocks_content_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "size": { + "name": "size", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oneThird'" + }, + "rich_text": { + "name": "rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "enable_link": { + "name": "enable_link", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_type": { + "name": "link_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'reference'" + }, + "link_new_tab": { + "name": "link_new_tab", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_url": { + "name": "link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_label": { + "name": "link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "link_appearance": { + "name": "link_appearance", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_content_columns_order_idx": { + "name": "_pages_v_blocks_content_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_content_columns_parent_id_idx": { + "name": "_pages_v_blocks_content_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_content_columns_parent_id_fk": { + "name": "_pages_v_blocks_content_columns_parent_id_fk", + "tableFrom": "_pages_v_blocks_content_columns", + "tableTo": "_pages_v_blocks_content", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_content": { + "name": "_pages_v_blocks_content", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_content_order_idx": { + "name": "_pages_v_blocks_content_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_content_parent_id_idx": { + "name": "_pages_v_blocks_content_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_content_path_idx": { + "name": "_pages_v_blocks_content_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_content_parent_id_fk": { + "name": "_pages_v_blocks_content_parent_id_fk", + "tableFrom": "_pages_v_blocks_content", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_blocks_media_block": { + "name": "_pages_v_blocks_media_block", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "block_name": { + "name": "block_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_blocks_media_block_order_idx": { + "name": "_pages_v_blocks_media_block_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_parent_id_idx": { + "name": "_pages_v_blocks_media_block_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_path_idx": { + "name": "_pages_v_blocks_media_block_path_idx", + "columns": [ + "_path" + ], + "isUnique": false + }, + "_pages_v_blocks_media_block_media_idx": { + "name": "_pages_v_blocks_media_block_media_idx", + "columns": [ + "media_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_blocks_media_block_media_id_media_id_fk": { + "name": "_pages_v_blocks_media_block_media_id_media_id_fk", + "tableFrom": "_pages_v_blocks_media_block", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_media_block_parent_id_fk": { + "name": "_pages_v_blocks_media_block_parent_id_fk", + "tableFrom": "_pages_v_blocks_media_block", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_hero_partners": { + "name": "_pages_v_version_home_hero_partners", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_hero_partners_order_idx": { + "name": "_pages_v_version_home_hero_partners_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_hero_partners_parent_id_idx": { + "name": "_pages_v_version_home_hero_partners_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_hero_partners_parent_id_fk": { + "name": "_pages_v_version_home_hero_partners_parent_id_fk", + "tableFrom": "_pages_v_version_home_hero_partners", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_quick_check_criteria": { + "name": "_pages_v_version_home_quick_check_criteria", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_quick_check_criteria_order_idx": { + "name": "_pages_v_version_home_quick_check_criteria_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_quick_check_criteria_parent_id_idx": { + "name": "_pages_v_version_home_quick_check_criteria_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_quick_check_criteria_parent_id_fk": { + "name": "_pages_v_version_home_quick_check_criteria_parent_id_fk", + "tableFrom": "_pages_v_version_home_quick_check_criteria", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_intro_stats": { + "name": "_pages_v_version_home_intro_stats", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_intro_stats_order_idx": { + "name": "_pages_v_version_home_intro_stats_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_intro_stats_parent_id_idx": { + "name": "_pages_v_version_home_intro_stats_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_intro_stats_parent_id_fk": { + "name": "_pages_v_version_home_intro_stats_parent_id_fk", + "tableFrom": "_pages_v_version_home_intro_stats", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_testimonials_items": { + "name": "_pages_v_version_home_testimonials_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_testimonials_items_order_idx": { + "name": "_pages_v_version_home_testimonials_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_testimonials_items_parent_id_idx": { + "name": "_pages_v_version_home_testimonials_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_pages_v_version_home_testimonials_items_image_idx": { + "name": "_pages_v_version_home_testimonials_items_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_testimonials_items_image_id_media_id_fk": { + "name": "_pages_v_version_home_testimonials_items_image_id_media_id_fk", + "tableFrom": "_pages_v_version_home_testimonials_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_testimonials_items_parent_id_fk": { + "name": "_pages_v_version_home_testimonials_items_parent_id_fk", + "tableFrom": "_pages_v_version_home_testimonials_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_benefits_items": { + "name": "_pages_v_version_home_benefits_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_benefits_items_order_idx": { + "name": "_pages_v_version_home_benefits_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_benefits_items_parent_id_idx": { + "name": "_pages_v_version_home_benefits_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_benefits_items_parent_id_fk": { + "name": "_pages_v_version_home_benefits_items_parent_id_fk", + "tableFrom": "_pages_v_version_home_benefits_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_home_application_benefits": { + "name": "_pages_v_version_home_application_benefits", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_home_application_benefits_order_idx": { + "name": "_pages_v_version_home_application_benefits_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_home_application_benefits_parent_id_idx": { + "name": "_pages_v_version_home_application_benefits_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_home_application_benefits_parent_id_fk": { + "name": "_pages_v_version_home_application_benefits_parent_id_fk", + "tableFrom": "_pages_v_version_home_application_benefits", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_self_steps_v": { + "name": "_home_self_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_self_steps_v_order_idx": { + "name": "_home_self_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_self_steps_v_parent_id_idx": { + "name": "_home_self_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_self_steps_v_parent_id_fk": { + "name": "_home_self_steps_v_parent_id_fk", + "tableFrom": "_home_self_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_nom_steps_v": { + "name": "_home_nom_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_nom_steps_v_order_idx": { + "name": "_home_nom_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_nom_steps_v_parent_id_idx": { + "name": "_home_nom_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_nom_steps_v_parent_id_fk": { + "name": "_home_nom_steps_v_parent_id_fk", + "tableFrom": "_home_nom_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_home_emp_opts_v": { + "name": "_home_emp_opts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_home_emp_opts_v_order_idx": { + "name": "_home_emp_opts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_home_emp_opts_v_parent_id_idx": { + "name": "_home_emp_opts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_home_emp_opts_v_parent_id_fk": { + "name": "_home_emp_opts_v_parent_id_fk", + "tableFrom": "_home_emp_opts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_items": { + "name": "_pages_v_version_contact_info_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "lines": { + "name": "lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_items_order_idx": { + "name": "_pages_v_version_contact_info_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_items_parent_id_idx": { + "name": "_pages_v_version_contact_info_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_items_parent_id_fk": { + "name": "_pages_v_version_contact_info_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_form_copy_steps": { + "name": "_pages_v_version_contact_info_form_copy_steps", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_form_copy_steps_order_idx": { + "name": "_pages_v_version_contact_info_form_copy_steps_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_form_copy_steps_parent_id_idx": { + "name": "_pages_v_version_contact_info_form_copy_steps_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_form_copy_steps_parent_id_fk": { + "name": "_pages_v_version_contact_info_form_copy_steps_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_form_copy_steps", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_info_form_copy_subjects": { + "name": "_pages_v_version_contact_info_form_copy_subjects", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_info_form_copy_subjects_order_idx": { + "name": "_pages_v_version_contact_info_form_copy_subjects_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_form_copy_subjects_parent_id_idx": { + "name": "_pages_v_version_contact_info_form_copy_subjects_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_info_form_copy_subjects_parent_id_fk": { + "name": "_pages_v_version_contact_info_form_copy_subjects_parent_id_fk", + "tableFrom": "_pages_v_version_contact_info_form_copy_subjects", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_deadlines_items": { + "name": "_pages_v_version_contact_deadlines_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_deadlines_items_order_idx": { + "name": "_pages_v_version_contact_deadlines_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_deadlines_items_parent_id_idx": { + "name": "_pages_v_version_contact_deadlines_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_deadlines_items_parent_id_fk": { + "name": "_pages_v_version_contact_deadlines_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_deadlines_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_contact_faq_items": { + "name": "_pages_v_version_contact_faq_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_contact_faq_items_order_idx": { + "name": "_pages_v_version_contact_faq_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_contact_faq_items_parent_id_idx": { + "name": "_pages_v_version_contact_faq_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_contact_faq_items_parent_id_fk": { + "name": "_pages_v_version_contact_faq_items_parent_id_fk", + "tableFrom": "_pages_v_version_contact_faq_items", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_proc_steps_v": { + "name": "_proc_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "step": { + "name": "step", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_proc_steps_v_order_idx": { + "name": "_proc_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_proc_steps_v_parent_id_idx": { + "name": "_proc_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_proc_steps_v_parent_id_fk": { + "name": "_proc_steps_v_parent_id_fk", + "tableFrom": "_proc_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_elig_crit_v": { + "name": "_elig_crit_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mapPin'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_elig_crit_v_order_idx": { + "name": "_elig_crit_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_elig_crit_v_parent_id_idx": { + "name": "_elig_crit_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_elig_crit_v_parent_id_fk": { + "name": "_elig_crit_v_parent_id_fk", + "tableFrom": "_elig_crit_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_elig_notes_v": { + "name": "_elig_notes_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'building2'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_elig_notes_v_order_idx": { + "name": "_elig_notes_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_elig_notes_v_parent_id_idx": { + "name": "_elig_notes_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_elig_notes_v_parent_id_fk": { + "name": "_elig_notes_v_parent_id_fk", + "tableFrom": "_elig_notes_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_app_inst_v": { + "name": "_app_inst_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_app_inst_v_order_idx": { + "name": "_app_inst_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_app_inst_v_parent_id_idx": { + "name": "_app_inst_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_app_inst_v_parent_id_fk": { + "name": "_app_inst_v_parent_id_fk", + "tableFrom": "_app_inst_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_way_facts_v": { + "name": "_way_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_way_facts_v_order_idx": { + "name": "_way_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_way_facts_v_parent_id_idx": { + "name": "_way_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_way_facts_v_parent_id_fk": { + "name": "_way_facts_v_parent_id_fk", + "tableFrom": "_way_facts_v", + "tableTo": "_app_ways_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_app_ways_v": { + "name": "_app_ways_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'send'" + }, + "featured": { + "name": "featured", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "list_type": { + "name": "list_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'facts'" + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_app_ways_v_order_idx": { + "name": "_app_ways_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_app_ways_v_parent_id_idx": { + "name": "_app_ways_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_app_ways_v_parent_id_fk": { + "name": "_app_ways_v_parent_id_fk", + "tableFrom": "_app_ways_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_date_mob_v": { + "name": "_date_mob_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_date_mob_v_order_idx": { + "name": "_date_mob_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_date_mob_v_parent_id_idx": { + "name": "_date_mob_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_date_mob_v_parent_id_fk": { + "name": "_date_mob_v_parent_id_fk", + "tableFrom": "_date_mob_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_date_desk_v": { + "name": "_date_desk_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_date_desk_v_order_idx": { + "name": "_date_desk_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_date_desk_v_parent_id_idx": { + "name": "_date_desk_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_date_desk_v_parent_id_fk": { + "name": "_date_desk_v_parent_id_fk", + "tableFrom": "_date_desk_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_award_cards_v": { + "name": "_award_cards_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "article_cta_label": { + "name": "article_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel lesen'" + }, + "article_cta_url": { + "name": "article_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "mailto_cta_label": { + "name": "mailto_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "mailto_cta_url": { + "name": "mailto_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'mailto:info@bmp-bayern.de'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_award_cards_v_order_idx": { + "name": "_award_cards_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_award_cards_v_parent_id_idx": { + "name": "_award_cards_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_award_cards_v_image_idx": { + "name": "_award_cards_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_award_cards_v_image_id_media_id_fk": { + "name": "_award_cards_v_image_id_media_id_fk", + "tableFrom": "_award_cards_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_award_cards_v_parent_id_fk": { + "name": "_award_cards_v_parent_id_fk", + "tableFrom": "_award_cards_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_form_facts_v": { + "name": "_form_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_form_facts_v_order_idx": { + "name": "_form_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_form_facts_v_parent_id_idx": { + "name": "_form_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_form_facts_v_parent_id_fk": { + "name": "_form_facts_v_parent_id_fk", + "tableFrom": "_form_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_self_steps_v": { + "name": "_self_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_self_steps_v_order_idx": { + "name": "_self_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_self_steps_v_parent_id_idx": { + "name": "_self_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_self_steps_v_parent_id_fk": { + "name": "_self_steps_v_parent_id_fk", + "tableFrom": "_self_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_nom_steps_v": { + "name": "_nom_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'trophy'" + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_nom_steps_v_order_idx": { + "name": "_nom_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_nom_steps_v_parent_id_idx": { + "name": "_nom_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_nom_steps_v_parent_id_fk": { + "name": "_nom_steps_v_parent_id_fk", + "tableFrom": "_nom_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_emp_opts_v": { + "name": "_emp_opts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_emp_opts_v_order_idx": { + "name": "_emp_opts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_emp_opts_v_parent_id_idx": { + "name": "_emp_opts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_emp_opts_v_parent_id_fk": { + "name": "_emp_opts_v_parent_id_fk", + "tableFrom": "_emp_opts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_hero_stats_v": { + "name": "_about_hero_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_hero_stats_v_order_idx": { + "name": "_about_hero_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_hero_stats_v_parent_id_idx": { + "name": "_about_hero_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_hero_stats_v_parent_id_fk": { + "name": "_about_hero_stats_v_parent_id_fk", + "tableFrom": "_about_hero_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_prize_body_v": { + "name": "_about_prize_body_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_prize_body_v_order_idx": { + "name": "_about_prize_body_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_prize_body_v_parent_id_idx": { + "name": "_about_prize_body_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_prize_body_v_parent_id_fk": { + "name": "_about_prize_body_v_parent_id_fk", + "tableFrom": "_about_prize_body_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_prize_facts_v": { + "name": "_about_prize_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_prize_facts_v_order_idx": { + "name": "_about_prize_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_prize_facts_v_parent_id_idx": { + "name": "_about_prize_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_prize_facts_v_parent_id_fk": { + "name": "_about_prize_facts_v_parent_id_fk", + "tableFrom": "_about_prize_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_mid_body_v": { + "name": "_about_mid_body_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_mid_body_v_order_idx": { + "name": "_about_mid_body_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_mid_body_v_parent_id_idx": { + "name": "_about_mid_body_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_mid_body_v_parent_id_fk": { + "name": "_about_mid_body_v_parent_id_fk", + "tableFrom": "_about_mid_body_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_tst_items_v": { + "name": "_about_tst_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_url": { + "name": "image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "company": { + "name": "company", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_tst_items_v_order_idx": { + "name": "_about_tst_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_tst_items_v_parent_id_idx": { + "name": "_about_tst_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_about_tst_items_v_image_idx": { + "name": "_about_tst_items_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_tst_items_v_image_id_media_id_fk": { + "name": "_about_tst_items_v_image_id_media_id_fk", + "tableFrom": "_about_tst_items_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_about_tst_items_v_parent_id_fk": { + "name": "_about_tst_items_v_parent_id_fk", + "tableFrom": "_about_tst_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_hist_items_v": { + "name": "_about_hist_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_hist_items_v_order_idx": { + "name": "_about_hist_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_hist_items_v_parent_id_idx": { + "name": "_about_hist_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_hist_items_v_parent_id_fk": { + "name": "_about_hist_items_v_parent_id_fk", + "tableFrom": "_about_hist_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_goal_items_v": { + "name": "_about_goal_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_goal_items_v_order_idx": { + "name": "_about_goal_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_goal_items_v_parent_id_idx": { + "name": "_about_goal_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_goal_items_v_parent_id_fk": { + "name": "_about_goal_items_v_parent_id_fk", + "tableFrom": "_about_goal_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_about_val_items_v": { + "name": "_about_val_items_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_about_val_items_v_order_idx": { + "name": "_about_val_items_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_about_val_items_v_parent_id_idx": { + "name": "_about_val_items_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_about_val_items_v_parent_id_fk": { + "name": "_about_val_items_v_parent_id_fk", + "tableFrom": "_about_val_items_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_imp_sections_v": { + "name": "_imp_sections_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_imp_sections_v_order_idx": { + "name": "_imp_sections_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_imp_sections_v_parent_id_idx": { + "name": "_imp_sections_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_imp_sections_v_parent_id_fk": { + "name": "_imp_sections_v_parent_id_fk", + "tableFrom": "_imp_sections_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_data_sections_v": { + "name": "_data_sections_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "anchor_id": { + "name": "anchor_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "toc_label": { + "name": "toc_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_data_sections_v_order_idx": { + "name": "_data_sections_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_data_sections_v_parent_id_idx": { + "name": "_data_sections_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_data_sections_v_parent_id_fk": { + "name": "_data_sections_v_parent_id_fk", + "tableFrom": "_data_sections_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_version_press_index_events_status_labels": { + "name": "_pages_v_version_press_index_events_status_labels", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_version_press_index_events_status_labels_order_idx": { + "name": "_pages_v_version_press_index_events_status_labels_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_pages_v_version_press_index_events_status_labels_parent_id_idx": { + "name": "_pages_v_version_press_index_events_status_labels_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_version_press_index_events_status_labels_parent_id_fk": { + "name": "_pages_v_version_press_index_events_status_labels_parent_id_fk", + "tableFrom": "_pages_v_version_press_index_events_status_labels", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_press_events_fb_v": { + "name": "_press_events_fb_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_press_events_fb_v_order_idx": { + "name": "_press_events_fb_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_press_events_fb_v_parent_id_idx": { + "name": "_press_events_fb_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_press_events_fb_v_image_idx": { + "name": "_press_events_fb_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_press_events_fb_v_image_id_media_id_fk": { + "name": "_press_events_fb_v_image_id_media_id_fk", + "tableFrom": "_press_events_fb_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_press_events_fb_v_parent_id_fk": { + "name": "_press_events_fb_v_parent_id_fk", + "tableFrom": "_press_events_fb_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_press_news_fb_v": { + "name": "_press_news_fb_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "img": { + "name": "img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_press_news_fb_v_order_idx": { + "name": "_press_news_fb_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_press_news_fb_v_parent_id_idx": { + "name": "_press_news_fb_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_press_news_fb_v_image_idx": { + "name": "_press_news_fb_v_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_press_news_fb_v_image_id_media_id_fk": { + "name": "_press_news_fb_v_image_id_media_id_fk", + "tableFrom": "_press_news_fb_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_press_news_fb_v_parent_id_fk": { + "name": "_press_news_fb_v_parent_id_fk", + "tableFrom": "_press_news_fb_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_upload_stats_v": { + "name": "_upload_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_upload_stats_v_order_idx": { + "name": "_upload_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_upload_stats_v_parent_id_idx": { + "name": "_upload_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_upload_stats_v_parent_id_fk": { + "name": "_upload_stats_v_parent_id_fk", + "tableFrom": "_upload_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_upload_req_cards_v": { + "name": "_upload_req_cards_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'fileText'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "items": { + "name": "items", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_upload_req_cards_v_order_idx": { + "name": "_upload_req_cards_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_upload_req_cards_v_parent_id_idx": { + "name": "_upload_req_cards_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_upload_req_cards_v_parent_id_fk": { + "name": "_upload_req_cards_v_parent_id_fk", + "tableFrom": "_upload_req_cards_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_patrons_v": { + "name": "_network_patrons_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_alt": { + "name": "image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line1": { + "name": "title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title_line2": { + "name": "title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "institution": { + "name": "institution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_patrons_v_order_idx": { + "name": "_network_patrons_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_patrons_v_parent_id_idx": { + "name": "_network_patrons_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_patrons_v_image_upload_idx": { + "name": "_network_patrons_v_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_patrons_v_image_upload_id_media_id_fk": { + "name": "_network_patrons_v_image_upload_id_media_id_fk", + "tableFrom": "_network_patrons_v", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_patrons_v_parent_id_fk": { + "name": "_network_patrons_v_parent_id_fk", + "tableFrom": "_network_patrons_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_stats_v": { + "name": "_network_jury_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_stats_v_order_idx": { + "name": "_network_jury_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_stats_v_parent_id_idx": { + "name": "_network_jury_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_stats_v_parent_id_fk": { + "name": "_network_jury_stats_v_parent_id_fk", + "tableFrom": "_network_jury_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_d_stats_v": { + "name": "_network_jury_d_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_d_stats_v_order_idx": { + "name": "_network_jury_d_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_d_stats_v_parent_id_idx": { + "name": "_network_jury_d_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_d_stats_v_parent_id_fk": { + "name": "_network_jury_d_stats_v_parent_id_fk", + "tableFrom": "_network_jury_d_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_jury_v": { + "name": "_network_jury_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bio": { + "name": "bio", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_upload_id": { + "name": "image_upload_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_jury_v_order_idx": { + "name": "_network_jury_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_jury_v_parent_id_idx": { + "name": "_network_jury_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_network_jury_v_image_upload_idx": { + "name": "_network_jury_v_image_upload_idx", + "columns": [ + "image_upload_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_jury_v_image_upload_id_media_id_fk": { + "name": "_network_jury_v_image_upload_id_media_id_fk", + "tableFrom": "_network_jury_v", + "tableTo": "media", + "columnsFrom": [ + "image_upload_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_network_jury_v_parent_id_fk": { + "name": "_network_jury_v_parent_id_fk", + "tableFrom": "_network_jury_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_eval_v": { + "name": "_network_eval_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_eval_v_order_idx": { + "name": "_network_eval_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_eval_v_parent_id_idx": { + "name": "_network_eval_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_eval_v_parent_id_fk": { + "name": "_network_eval_v_parent_id_fk", + "tableFrom": "_network_eval_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_tiers_v": { + "name": "_network_tiers_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_tiers_v_order_idx": { + "name": "_network_tiers_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_tiers_v_parent_id_idx": { + "name": "_network_tiers_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_tiers_v_parent_id_fk": { + "name": "_network_tiers_v_parent_id_fk", + "tableFrom": "_network_tiers_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_sponsor_bens_v": { + "name": "_network_sponsor_bens_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sub": { + "name": "sub", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_sponsor_bens_v_order_idx": { + "name": "_network_sponsor_bens_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_sponsor_bens_v_parent_id_idx": { + "name": "_network_sponsor_bens_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_sponsor_bens_v_parent_id_fk": { + "name": "_network_sponsor_bens_v_parent_id_fk", + "tableFrom": "_network_sponsor_bens_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_form_steps_v": { + "name": "_network_form_steps_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_form_steps_v_order_idx": { + "name": "_network_form_steps_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_form_steps_v_parent_id_idx": { + "name": "_network_form_steps_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_form_steps_v_parent_id_fk": { + "name": "_network_form_steps_v_parent_id_fk", + "tableFrom": "_network_form_steps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_network_form_pkgs_v": { + "name": "_network_form_pkgs_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_network_form_pkgs_v_order_idx": { + "name": "_network_form_pkgs_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_network_form_pkgs_v_parent_id_idx": { + "name": "_network_form_pkgs_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_network_form_pkgs_v_parent_id_fk": { + "name": "_network_form_pkgs_v_parent_id_fk", + "tableFrom": "_network_form_pkgs_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_hero_stats_v": { + "name": "_member_hero_stats_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_hero_stats_v_order_idx": { + "name": "_member_hero_stats_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_hero_stats_v_parent_id_idx": { + "name": "_member_hero_stats_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_hero_stats_v_parent_id_fk": { + "name": "_member_hero_stats_v_parent_id_fk", + "tableFrom": "_member_hero_stats_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_benefits_v": { + "name": "_member_benefits_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'users'" + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_benefits_v_order_idx": { + "name": "_member_benefits_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_benefits_v_parent_id_idx": { + "name": "_member_benefits_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_benefits_v_parent_id_fk": { + "name": "_member_benefits_v_parent_id_fk", + "tableFrom": "_member_benefits_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_about_copy_v": { + "name": "_member_about_copy_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "text": { + "name": "text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_about_copy_v_order_idx": { + "name": "_member_about_copy_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_about_copy_v_parent_id_idx": { + "name": "_member_about_copy_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_about_copy_v_parent_id_fk": { + "name": "_member_about_copy_v_parent_id_fk", + "tableFrom": "_member_about_copy_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_about_facts_v": { + "name": "_member_about_facts_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_about_facts_v_order_idx": { + "name": "_member_about_facts_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_about_facts_v_parent_id_idx": { + "name": "_member_about_facts_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_about_facts_v_parent_id_fk": { + "name": "_member_about_facts_v_parent_id_fk", + "tableFrom": "_member_about_facts_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_pricing_v": { + "name": "_member_pricing_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "max": { + "name": "max", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "annual": { + "name": "annual", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_pricing_v_order_idx": { + "name": "_member_pricing_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_pricing_v_parent_id_idx": { + "name": "_member_pricing_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_pricing_v_parent_id_fk": { + "name": "_member_pricing_v_parent_id_fk", + "tableFrom": "_member_pricing_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_app_options_v": { + "name": "_member_app_options_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "number": { + "name": "number", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "eyebrow": { + "name": "eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "file_id": { + "name": "file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "download": { + "name": "download", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_app_options_v_order_idx": { + "name": "_member_app_options_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_app_options_v_parent_id_idx": { + "name": "_member_app_options_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "_member_app_options_v_file_idx": { + "name": "_member_app_options_v_file_idx", + "columns": [ + "file_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_app_options_v_file_id_media_id_fk": { + "name": "_member_app_options_v_file_id_media_id_fk", + "tableFrom": "_member_app_options_v", + "tableTo": "media", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_member_app_options_v_parent_id_fk": { + "name": "_member_app_options_v_parent_id_fk", + "tableFrom": "_member_app_options_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_promises_v": { + "name": "_member_promises_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_promises_v_order_idx": { + "name": "_member_promises_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_promises_v_parent_id_idx": { + "name": "_member_promises_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_promises_v_parent_id_fk": { + "name": "_member_promises_v_parent_id_fk", + "tableFrom": "_member_promises_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_quotes_v": { + "name": "_member_quotes_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "initials": { + "name": "initials", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_quotes_v_order_idx": { + "name": "_member_quotes_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_quotes_v_parent_id_idx": { + "name": "_member_quotes_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_quotes_v_parent_id_fk": { + "name": "_member_quotes_v_parent_id_fk", + "tableFrom": "_member_quotes_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_member_faq_v": { + "name": "_member_faq_v", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "q": { + "name": "q", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "a": { + "name": "a", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_member_faq_v_order_idx": { + "name": "_member_faq_v_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_member_faq_v_parent_id_idx": { + "name": "_member_faq_v_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_member_faq_v_parent_id_fk": { + "name": "_member_faq_v_parent_id_fk", + "tableFrom": "_member_faq_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v": { + "name": "_pages_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_type": { + "name": "version_hero_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'lowImpact'" + }, + "version_hero_rich_text": { + "name": "version_hero_rich_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_media_id": { + "name": "version_hero_media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_hero_background_image_id": { + "name": "version_home_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_hero_image_alt": { + "name": "version_home_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Awards Gala'" + }, + "version_home_hero_badge": { + "name": "version_home_hero_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026 geschlossen'" + }, + "version_home_hero_heading_line1": { + "name": "version_home_hero_heading_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERNS BESTE'" + }, + "version_home_hero_heading_accent": { + "name": "version_home_hero_heading_accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTÄNDLER.'" + }, + "version_home_hero_description": { + "name": "version_home_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis würdigt herausragende Leistungen – von Innovation über Nachhaltigkeit bis hin zur Exzellenz.'" + }, + "version_home_hero_primary_cta_label": { + "name": "version_home_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_home_hero_primary_cta_url": { + "name": "version_home_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_home_hero_secondary_cta_label": { + "name": "version_home_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "version_home_hero_secondary_cta_url": { + "name": "version_home_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_home_hero_video_label": { + "name": "version_home_hero_video_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Film abspielen'" + }, + "version_home_hero_partners_label": { + "name": "version_home_hero_partners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unsere Partner'" + }, + "version_home_quick_check_eyebrow": { + "name": "version_home_quick_check_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_home_quick_check_heading": { + "name": "version_home_quick_check_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SIND SIE\nBERECHTIGT?'" + }, + "version_home_quick_check_image_id": { + "name": "version_home_quick_check_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_quick_check_image_alt": { + "name": "version_home_quick_check_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bühne'" + }, + "version_home_quick_check_body": { + "name": "version_home_quick_check_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte KMU im Freistaat. Fünf Kriterien entscheiden, erfüllen Sie alle fünf, steht Ihrer Bewerbung nichts im Weg.'" + }, + "version_home_quick_check_note": { + "name": "version_home_quick_check_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auch ein Verbund bzw. eine Gemeinschaft von mittelständischen Unternehmen oder von mittelständischen Unternehmen und Organisationen/Institutionen mit Schwerpunkt in Bayern kann teilnehmen.'" + }, + "version_home_quick_check_cta_label": { + "name": "version_home_quick_check_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Weg zum Preis'" + }, + "version_home_quick_check_cta_url": { + "name": "version_home_quick_check_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_home_intro_eyebrow": { + "name": "version_home_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ein Gewinn für alle'" + }, + "version_home_intro_heading": { + "name": "version_home_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSZEICHNUNG\nFÜR DIE BESTEN.'" + }, + "version_home_intro_image_id": { + "name": "version_home_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_intro_image_alt": { + "name": "version_home_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Auszeichnung'" + }, + "version_home_intro_quote": { + "name": "version_home_intro_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Ein Unternehmen zu gründen erfordert nicht allein spezielle Fähigkeiten. Es erfordert Persönlichkeit!“'" + }, + "version_home_intro_body": { + "name": "version_home_intro_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir suchen Vorbilder, die sich trotz aller Risiken nicht scheuen, Visionen in Businesspläne und Ideen in Unternehmungen zu verwandeln, und das mit großem persönlichen Einsatz und Verantwortung für Ihre Mitarbeiter. Seit vielen Jahren würdigen wir herausragende unternehmerische Leistungen im Freistaat.'" + }, + "version_home_intro_cta_label": { + "name": "version_home_intro_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr über den Preis'" + }, + "version_home_intro_cta_url": { + "name": "version_home_intro_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/der-bmp'" + }, + "version_home_winners_eyebrow": { + "name": "version_home_winners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Success Stories'" + }, + "version_home_winners_heading": { + "name": "version_home_winners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DIE BESTEN UNTERNEHMEN IN BAYERN'" + }, + "version_home_winners_cta_label": { + "name": "version_home_winners_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_home_winners_cta_url": { + "name": "version_home_winners_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_home_winners_fallback_image_id": { + "name": "version_home_winners_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_winners_card_fallback_title": { + "name": "version_home_winners_card_fallback_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_home_winners_hover_label": { + "name": "version_home_winners_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "version_home_testimonials_eyebrow": { + "name": "version_home_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "version_home_testimonials_heading": { + "name": "version_home_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "version_home_testimonials_desktop_heading": { + "name": "version_home_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "version_home_testimonials_year_prefix": { + "name": "version_home_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_home_testimonials_previous_label": { + "name": "version_home_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "version_home_testimonials_next_label": { + "name": "version_home_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "version_home_testimonials_slide_label_prefix": { + "name": "version_home_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "version_home_benefits_eyebrow": { + "name": "version_home_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr als nur ein Preis'" + }, + "version_home_benefits_heading": { + "name": "version_home_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM SICH DIE\nTEILNAHME LOHNT.'" + }, + "version_home_benefits_image_id": { + "name": "version_home_benefits_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_benefits_image_alt": { + "name": "version_home_benefits_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Netzwerk'" + }, + "version_home_benefits_image_label": { + "name": "version_home_benefits_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala-Netzwerk'" + }, + "version_home_application_eyebrow": { + "name": "version_home_application_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Chance ergreifen'" + }, + "version_home_application_heading": { + "name": "version_home_application_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN\nAUCH SIE\nGESCHICHTE.'" + }, + "version_home_application_body": { + "name": "version_home_application_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands – vollständig kostenfrei.'" + }, + "version_home_application_award_image_id": { + "name": "version_home_application_award_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_application_award_image_alt": { + "name": "version_home_application_award_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung Bayerischer Mittelstandspreis'" + }, + "version_home_application_award_caption": { + "name": "version_home_application_award_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_home_application_form_eyebrow": { + "name": "version_home_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung 2026'" + }, + "version_home_application_form_title": { + "name": "version_home_application_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos bewerben'" + }, + "version_home_application_footnote": { + "name": "version_home_application_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kostenlos und unverbindlich –'" + }, + "version_home_application_footnote_strong": { + "name": "version_home_application_footnote_strong", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'keine Teilnahmegebühr'" + }, + "version_home_form_step_complete_label": { + "name": "version_home_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_home_form_back_label": { + "name": "version_home_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_home_form_next_label": { + "name": "version_home_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_home_form_submit_label": { + "name": "version_home_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "version_home_form_yes_label": { + "name": "version_home_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "version_home_form_no_label": { + "name": "version_home_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "version_home_form_required_suffix": { + "name": "version_home_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "version_home_form_validation_choose": { + "name": "version_home_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "version_home_form_validation_required": { + "name": "version_home_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_home_form_validation_invalid_email": { + "name": "version_home_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_home_form_type_step_eyebrow": { + "name": "version_home_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "version_home_form_type_step_heading": { + "name": "version_home_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "version_home_form_type_step_self_title": { + "name": "version_home_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "version_home_form_type_step_self_desc": { + "name": "version_home_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "version_home_form_type_step_nomination_title": { + "name": "version_home_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "version_home_form_type_step_nomination_desc": { + "name": "version_home_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "version_home_form_eligibility_allowed_employee_values": { + "name": "version_home_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "version_home_form_eligibility_required_bayern_value": { + "name": "version_home_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "version_home_form_eligibility_eyebrow": { + "name": "version_home_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_home_form_eligibility_heading": { + "name": "version_home_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "version_home_form_eligibility_employees_label": { + "name": "version_home_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "version_home_form_eligibility_bayern_label": { + "name": "version_home_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "version_home_form_eligibility_owner_label": { + "name": "version_home_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "version_home_form_eligibility_ineligible_heading": { + "name": "version_home_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "version_home_form_eligibility_ineligible_body": { + "name": "version_home_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "version_home_form_eligibility_ineligible_contact_prefix": { + "name": "version_home_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "version_home_form_eligibility_ineligible_contact_email": { + "name": "version_home_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "version_home_form_self_contact_eyebrow": { + "name": "version_home_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_home_form_self_contact_heading": { + "name": "version_home_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "version_home_form_self_contact_company_label": { + "name": "version_home_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_home_form_self_contact_company_placeholder": { + "name": "version_home_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_home_form_self_contact_name_label": { + "name": "version_home_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_home_form_self_contact_name_placeholder": { + "name": "version_home_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_home_form_self_contact_email_label": { + "name": "version_home_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_home_form_self_contact_email_placeholder": { + "name": "version_home_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_home_form_self_contact_phone_label": { + "name": "version_home_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "version_home_form_self_contact_phone_placeholder": { + "name": "version_home_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "version_home_form_self_contact_footnote": { + "name": "version_home_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "version_home_form_self_summary_eyebrow": { + "name": "version_home_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_home_form_self_summary_heading": { + "name": "version_home_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "version_home_form_self_summary_company_label": { + "name": "version_home_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_home_form_self_summary_employees_label": { + "name": "version_home_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_home_form_self_summary_location_label": { + "name": "version_home_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_home_form_self_summary_location_prefix": { + "name": "version_home_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "version_home_form_self_summary_contact_label": { + "name": "version_home_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_home_form_nomination_company_eyebrow": { + "name": "version_home_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "version_home_form_nomination_company_heading": { + "name": "version_home_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "version_home_form_nomination_company_company_label": { + "name": "version_home_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_home_form_nomination_company_company_placeholder": { + "name": "version_home_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_home_form_nomination_company_industry_label": { + "name": "version_home_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_home_form_nomination_company_industry_placeholder": { + "name": "version_home_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "version_home_form_nomination_company_location_label": { + "name": "version_home_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "version_home_form_nomination_company_location_placeholder": { + "name": "version_home_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "version_home_form_nomination_contact_eyebrow": { + "name": "version_home_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "version_home_form_nomination_contact_heading": { + "name": "version_home_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "version_home_form_nomination_contact_name_label": { + "name": "version_home_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_home_form_nomination_contact_name_placeholder": { + "name": "version_home_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_home_form_nomination_contact_email_label": { + "name": "version_home_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "version_home_form_nomination_contact_email_placeholder": { + "name": "version_home_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_home_form_nomination_contact_relationship_label": { + "name": "version_home_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "version_home_form_nomination_contact_relationship_placeholder": { + "name": "version_home_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "version_home_form_nomination_contact_footnote": { + "name": "version_home_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "version_home_form_nomination_summary_eyebrow": { + "name": "version_home_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_home_form_nomination_summary_heading": { + "name": "version_home_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "version_home_form_nomination_summary_company_label": { + "name": "version_home_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_home_form_nomination_summary_industry_label": { + "name": "version_home_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_home_form_nomination_summary_location_label": { + "name": "version_home_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_home_form_nomination_summary_nominated_by_label": { + "name": "version_home_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "version_home_form_nomination_summary_empty_value": { + "name": "version_home_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "version_home_form_success_self_heading": { + "name": "version_home_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_home_form_success_nomination_heading": { + "name": "version_home_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "version_home_form_success_self_prefix": { + "name": "version_home_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_home_form_success_self_middle": { + "name": "version_home_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "version_home_form_success_self_suffix": { + "name": "version_home_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "version_home_form_success_nomination_prefix": { + "name": "version_home_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_home_form_success_nomination_middle": { + "name": "version_home_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "version_home_form_success_nomination_suffix": { + "name": "version_home_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "version_home_video_modal_video_id": { + "name": "version_home_video_modal_video_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_home_video_modal_title": { + "name": "version_home_video_modal_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Video-Player Platzhalter'" + }, + "version_home_video_modal_description": { + "name": "version_home_video_modal_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hier würde das Image-Video des BMP geladen werden.'" + }, + "version_home_video_modal_close_label": { + "name": "version_home_video_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "version_contact_hero_background_image_id": { + "name": "version_contact_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_contact_hero_image_alt": { + "name": "version_contact_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "version_contact_hero_eyebrow": { + "name": "version_contact_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dialog & Service'" + }, + "version_contact_hero_heading": { + "name": "version_contact_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir sind\nfür Sie da.'" + }, + "version_contact_hero_description": { + "name": "version_contact_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen zur Bewerbung, zur Gala oder zu Partnermöglichkeiten – unser Team begleitet Sie persönlich.'" + }, + "version_contact_info_eyebrow": { + "name": "version_contact_info_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktkontakt'" + }, + "version_contact_info_heading": { + "name": "version_contact_info_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt­möglichkeiten'" + }, + "version_contact_info_next_award_label": { + "name": "version_contact_info_next_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächste Preisverleihung:'" + }, + "version_contact_info_next_award_date": { + "name": "version_contact_info_next_award_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'22. Oktober 2026'" + }, + "version_contact_info_form_image_id": { + "name": "version_contact_info_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_contact_info_form_image_alt": { + "name": "version_contact_info_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala 2025'" + }, + "version_contact_info_form_image_label": { + "name": "version_contact_info_form_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala 2025 München'" + }, + "version_contact_info_form_eyebrow": { + "name": "version_contact_info_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontaktformular'" + }, + "version_contact_info_form_title": { + "name": "version_contact_info_form_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie uns'" + }, + "version_contact_info_form_copy_prompts_subject": { + "name": "version_contact_info_form_copy_prompts_subject", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Womit können wir Ihnen helfen?'" + }, + "version_contact_info_form_copy_prompts_contact": { + "name": "version_contact_info_form_copy_prompts_contact", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie dürfen wir Sie kontaktieren?'" + }, + "version_contact_info_form_copy_prompts_message": { + "name": "version_contact_info_form_copy_prompts_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was möchten Sie uns mitteilen?'" + }, + "version_contact_info_form_copy_fields_name_label": { + "name": "version_contact_info_form_copy_fields_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Name'" + }, + "version_contact_info_form_copy_fields_name_placeholder": { + "name": "version_contact_info_form_copy_fields_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_contact_info_form_copy_fields_email_label": { + "name": "version_contact_info_form_copy_fields_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_contact_info_form_copy_fields_email_placeholder": { + "name": "version_contact_info_form_copy_fields_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_contact_info_form_copy_fields_message_label": { + "name": "version_contact_info_form_copy_fields_message_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht'" + }, + "version_contact_info_form_copy_fields_message_placeholder": { + "name": "version_contact_info_form_copy_fields_message_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schreiben Sie Ihre Nachricht…'" + }, + "version_contact_info_form_copy_validation_name_required": { + "name": "version_contact_info_form_copy_validation_name_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Namen angeben'" + }, + "version_contact_info_form_copy_validation_email_required": { + "name": "version_contact_info_form_copy_validation_email_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte E-Mail angeben'" + }, + "version_contact_info_form_copy_validation_email_invalid": { + "name": "version_contact_info_form_copy_validation_email_invalid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_contact_info_form_copy_validation_message_required": { + "name": "version_contact_info_form_copy_validation_message_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte Nachricht verfassen.'" + }, + "version_contact_info_form_copy_navigation_back": { + "name": "version_contact_info_form_copy_navigation_back", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_contact_info_form_copy_navigation_next": { + "name": "version_contact_info_form_copy_navigation_next", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_contact_info_form_copy_navigation_submit": { + "name": "version_contact_info_form_copy_navigation_submit", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage senden'" + }, + "version_contact_info_form_copy_success_heading": { + "name": "version_contact_info_form_copy_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nachricht gesendet'" + }, + "version_contact_info_form_copy_success_prefix": { + "name": "version_contact_info_form_copy_success_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Danke,'" + }, + "version_contact_info_form_copy_success_suffix_before_email": { + "name": "version_contact_info_form_copy_success_suffix_before_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns zeitnah bei'" + }, + "version_contact_deadlines_watermark": { + "name": "version_contact_deadlines_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'2026'" + }, + "version_contact_deadlines_eyebrow": { + "name": "version_contact_deadlines_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fahrplan 2026'" + }, + "version_contact_faq_eyebrow": { + "name": "version_contact_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Antworten'" + }, + "version_contact_faq_heading": { + "name": "version_contact_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige\nFragen'" + }, + "version_participation_hero_background_image_id": { + "name": "version_participation_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_participation_hero_image_alt": { + "name": "version_participation_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Teilnahme BMP'" + }, + "version_participation_hero_eyebrow": { + "name": "version_participation_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungsphase 2026'" + }, + "version_participation_hero_heading": { + "name": "version_participation_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'GESTALTEN SIE\nBAYERNS ZUKUNFT.'" + }, + "version_participation_hero_description": { + "name": "version_participation_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alles, was Sie für Ihre erfolgreiche Bewerbung zum Bayerischen Mittelstandspreis wissen müssen.'" + }, + "version_participation_process_eyebrow": { + "name": "version_participation_process_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt für Schritt'" + }, + "version_participation_process_heading": { + "name": "version_participation_process_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR WEG ZUM\nPREIS.'" + }, + "version_participation_process_description": { + "name": "version_participation_process_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Einreichung bis zur Gala – vier klar definierte Schritte auf dem Weg zur höchsten Auszeichnung des bayerischen Mittelstands.'" + }, + "version_participation_process_step_prefix": { + "name": "version_participation_process_step_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt'" + }, + "version_participation_process_scroll_hint": { + "name": "version_participation_process_scroll_hint", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Scrollen zum Erkunden'" + }, + "version_participation_process_progress_label": { + "name": "version_participation_process_progress_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'01 / 04'" + }, + "version_participation_eligibility_eyebrow": { + "name": "version_participation_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berechtigung'" + }, + "version_participation_eligibility_heading": { + "name": "version_participation_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER KANN\nTEILNEHMEN?'" + }, + "version_participation_eligibility_description": { + "name": "version_participation_eligibility_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vier klar definierte Kriterien: Erfüllen Sie alle, bewerben Sie sich kostenlos und ohne bürokratischen Aufwand.'" + }, + "version_participation_eligibility_primary_cta_label": { + "name": "version_participation_eligibility_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_participation_eligibility_primary_cta_url": { + "name": "version_participation_eligibility_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_eligibility_secondary_cta_label": { + "name": "version_participation_eligibility_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "version_participation_eligibility_secondary_cta_url": { + "name": "version_participation_eligibility_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_participation_eligibility_nudge_text": { + "name": "version_participation_eligibility_nudge_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle 4 Punkte erfüllt? Dann jetzt kostenlos bewerben.'" + }, + "version_participation_eligibility_nudge_cta_label": { + "name": "version_participation_eligibility_nudge_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "version_participation_eligibility_nudge_cta_url": { + "name": "version_participation_eligibility_nudge_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_application_ways_eyebrow": { + "name": "version_participation_application_ways_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "version_participation_application_ways_heading": { + "name": "version_participation_application_ways_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'HIER KÖNNEN SIE SICH\nBEWERBEN ODER EIN\nUNTERNEHMEN VORSCHLAGEN.'" + }, + "version_participation_application_ways_description": { + "name": "version_participation_application_ways_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Als Unternehmen haben Sie zwei Möglichkeiten: Sie werden von einem unterstützenden Partner oder einer Institution vorgeschlagen, oder Sie ergreifen selbst die Initiative und füllen unsere Anmeldung aus. Die Teilnahme ist in allen Fällen kostenfrei.'" + }, + "version_participation_application_ways_recommended_label": { + "name": "version_participation_application_ways_recommended_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Empfohlen'" + }, + "version_participation_application_ways_fallback_cta_label": { + "name": "version_participation_application_ways_fallback_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Formular'" + }, + "version_participation_application_ways_fallback_cta_url": { + "name": "version_participation_application_ways_fallback_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#bewerben'" + }, + "version_participation_dates_banner_heading": { + "name": "version_participation_dates_banner_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wichtige Termine 2026'" + }, + "version_participation_dates_banner_description": { + "name": "version_participation_dates_banner_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Planen Sie Ihre Teilnahme rechtzeitig.'" + }, + "version_participation_awards_grid_eyebrow": { + "name": "version_participation_awards_grid_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnungen 2026'" + }, + "version_participation_awards_grid_heading": { + "name": "version_participation_awards_grid_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.'" + }, + "version_participation_awards_grid_description": { + "name": "version_participation_awards_grid_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.'" + }, + "version_participation_application_form_image_id": { + "name": "version_participation_application_form_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_participation_application_form_image_alt": { + "name": "version_participation_application_form_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_participation_application_form_image_caption": { + "name": "version_participation_application_form_image_caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung 2025'" + }, + "version_participation_application_form_eyebrow": { + "name": "version_participation_application_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Direktbewerbung'" + }, + "version_participation_application_form_heading": { + "name": "version_participation_application_form_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEWERBEN ODER\nVORSCHLAGEN.'" + }, + "version_participation_application_form_description": { + "name": "version_participation_application_form_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie können sich selbst bewerben oder ein herausragendes Unternehmen vorschlagen. Firmenverbunde können sich ebenfalls bewerben. Die Teilnahme ist vollständig kostenfrei.'" + }, + "version_participation_application_form_form_eyebrow": { + "name": "version_participation_application_form_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbung 2026'" + }, + "version_participation_application_form_upload_cta_label": { + "name": "version_participation_application_form_upload_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF hochladen'" + }, + "version_participation_application_form_upload_cta_url": { + "name": "version_participation_application_form_upload_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "version_participation_application_form_upload_prompt": { + "name": "version_participation_application_form_upload_prompt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sie haben Ihre Unterlagen bereits als PDF vorbereitet? Laden Sie sie direkt hoch, statt das Formular auszufüllen.'" + }, + "version_participation_application_form_upload_footer_cta_label": { + "name": "version_participation_application_form_upload_footer_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen →'" + }, + "version_participation_application_form_upload_footer_cta_url": { + "name": "version_participation_application_form_upload_footer_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/formular-hochladen'" + }, + "version_participation_form_step_complete_label": { + "name": "version_participation_form_step_complete_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_participation_form_back_label": { + "name": "version_participation_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_participation_form_next_label": { + "name": "version_participation_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_participation_form_submit_label": { + "name": "version_participation_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Absenden'" + }, + "version_participation_form_yes_label": { + "name": "version_participation_form_yes_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ja'" + }, + "version_participation_form_no_label": { + "name": "version_participation_form_no_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nein'" + }, + "version_participation_form_required_suffix": { + "name": "version_participation_form_required_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'*'" + }, + "version_participation_form_validation_choose": { + "name": "version_participation_form_validation_choose", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen'" + }, + "version_participation_form_validation_required": { + "name": "version_participation_form_validation_required", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_participation_form_validation_invalid_email": { + "name": "version_participation_form_validation_invalid_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_participation_form_type_step_eyebrow": { + "name": "version_participation_form_type_step_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1'" + }, + "version_participation_form_type_step_heading": { + "name": "version_participation_form_type_step_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Art der Einreichung'" + }, + "version_participation_form_type_step_self_title": { + "name": "version_participation_form_type_step_self_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eigenbewerbung'" + }, + "version_participation_form_type_step_self_desc": { + "name": "version_participation_form_type_step_self_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich bewerbe mein eigenes Unternehmen für den Bayerischen Mittelstandspreis.'" + }, + "version_participation_form_type_step_nomination_title": { + "name": "version_participation_form_type_step_nomination_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorschlag'" + }, + "version_participation_form_type_step_nomination_desc": { + "name": "version_participation_form_type_step_nomination_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ich schlage ein anderes Unternehmen vor, das den Preis verdient.'" + }, + "version_participation_form_eligibility_allowed_employee_values": { + "name": "version_participation_form_eligibility_allowed_employee_values", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'10-50,51-200,201-500'" + }, + "version_participation_form_eligibility_required_bayern_value": { + "name": "version_participation_form_eligibility_required_bayern_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ja'" + }, + "version_participation_form_eligibility_eyebrow": { + "name": "version_participation_form_eligibility_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schnell-Check'" + }, + "version_participation_form_eligibility_heading": { + "name": "version_participation_form_eligibility_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grundlegende Eignung'" + }, + "version_participation_form_eligibility_employees_label": { + "name": "version_participation_form_eligibility_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wie viele Mitarbeiter hat Ihr Unternehmen?'" + }, + "version_participation_form_eligibility_bayern_label": { + "name": "version_participation_form_eligibility_bayern_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hat Ihr Unternehmen seinen Sitz in Bayern?'" + }, + "version_participation_form_eligibility_owner_label": { + "name": "version_participation_form_eligibility_owner_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen inhabergeführt oder familiengeführt?'" + }, + "version_participation_form_eligibility_ineligible_heading": { + "name": "version_participation_form_eligibility_ineligible_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Leider nicht förderfähig'" + }, + "version_participation_form_eligibility_ineligible_body": { + "name": "version_participation_form_eligibility_ineligible_body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis richtet sich an inhabergeführte Unternehmen mit 10–500 Mitarbeitern und Sitz in Bayern. Ihr Unternehmen erfüllt diese Voraussetzungen aktuell nicht.'" + }, + "version_participation_form_eligibility_ineligible_contact_prefix": { + "name": "version_participation_form_eligibility_ineligible_contact_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fragen? Schreiben Sie uns:'" + }, + "version_participation_form_eligibility_ineligible_contact_email": { + "name": "version_participation_form_eligibility_ineligible_contact_email", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'info@bmp-bayern.de'" + }, + "version_participation_form_self_contact_eyebrow": { + "name": "version_participation_form_self_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_participation_form_self_contact_heading": { + "name": "version_participation_form_self_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Kontaktdaten'" + }, + "version_participation_form_self_contact_company_label": { + "name": "version_participation_form_self_contact_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_participation_form_self_contact_company_placeholder": { + "name": "version_participation_form_self_contact_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_participation_form_self_contact_name_label": { + "name": "version_participation_form_self_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_participation_form_self_contact_name_placeholder": { + "name": "version_participation_form_self_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_participation_form_self_contact_email_label": { + "name": "version_participation_form_self_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail'" + }, + "version_participation_form_self_contact_email_placeholder": { + "name": "version_participation_form_self_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_participation_form_self_contact_phone_label": { + "name": "version_participation_form_self_contact_phone_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Telefon'" + }, + "version_participation_form_self_contact_phone_placeholder": { + "name": "version_participation_form_self_contact_phone_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'+49 89 ...'" + }, + "version_participation_form_self_contact_footnote": { + "name": "version_participation_form_self_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen den vollständigen Fragebogen automatisch per E-Mail zu.'" + }, + "version_participation_form_self_summary_eyebrow": { + "name": "version_participation_form_self_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_participation_form_self_summary_heading": { + "name": "version_participation_form_self_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Bewerbung'" + }, + "version_participation_form_self_summary_company_label": { + "name": "version_participation_form_self_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_participation_form_self_summary_employees_label": { + "name": "version_participation_form_self_summary_employees_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_participation_form_self_summary_location_label": { + "name": "version_participation_form_self_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_participation_form_self_summary_location_prefix": { + "name": "version_participation_form_self_summary_location_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern:'" + }, + "version_participation_form_self_summary_contact_label": { + "name": "version_participation_form_self_summary_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt'" + }, + "version_participation_form_nomination_company_eyebrow": { + "name": "version_participation_form_nomination_company_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung'" + }, + "version_participation_form_nomination_company_heading": { + "name": "version_participation_form_nomination_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiertes Unternehmen'" + }, + "version_participation_form_nomination_company_company_label": { + "name": "version_participation_form_nomination_company_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_participation_form_nomination_company_company_placeholder": { + "name": "version_participation_form_nomination_company_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Muster GmbH'" + }, + "version_participation_form_nomination_company_industry_label": { + "name": "version_participation_form_nomination_company_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_participation_form_nomination_company_industry_placeholder": { + "name": "version_participation_form_nomination_company_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Maschinenbau'" + }, + "version_participation_form_nomination_company_location_label": { + "name": "version_participation_form_nomination_company_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort Bayern'" + }, + "version_participation_form_nomination_company_location_placeholder": { + "name": "version_participation_form_nomination_company_location_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. München'" + }, + "version_participation_form_nomination_contact_eyebrow": { + "name": "version_participation_form_nomination_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierender'" + }, + "version_participation_form_nomination_contact_heading": { + "name": "version_participation_form_nomination_contact_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Angaben'" + }, + "version_participation_form_nomination_contact_name_label": { + "name": "version_participation_form_nomination_contact_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name'" + }, + "version_participation_form_nomination_contact_name_placeholder": { + "name": "version_participation_form_nomination_contact_name_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_participation_form_nomination_contact_email_label": { + "name": "version_participation_form_nomination_contact_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre E-Mail'" + }, + "version_participation_form_nomination_contact_email_placeholder": { + "name": "version_participation_form_nomination_contact_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ihre@email.de'" + }, + "version_participation_form_nomination_contact_relationship_label": { + "name": "version_participation_form_nomination_contact_relationship_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Beziehung zum Unternehmen'" + }, + "version_participation_form_nomination_contact_relationship_placeholder": { + "name": "version_participation_form_nomination_contact_relationship_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Kunde, Partner, Bekannter'" + }, + "version_participation_form_nomination_contact_footnote": { + "name": "version_participation_form_nomination_contact_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir nehmen Kontakt mit dem nominierten Unternehmen auf und informieren es über Ihre Nominierung.'" + }, + "version_participation_form_nomination_summary_eyebrow": { + "name": "version_participation_form_nomination_summary_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zusammenfassung'" + }, + "version_participation_form_nomination_summary_heading": { + "name": "version_participation_form_nomination_summary_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Nominierung'" + }, + "version_participation_form_nomination_summary_company_label": { + "name": "version_participation_form_nomination_summary_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen'" + }, + "version_participation_form_nomination_summary_industry_label": { + "name": "version_participation_form_nomination_summary_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_participation_form_nomination_summary_location_label": { + "name": "version_participation_form_nomination_summary_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_participation_form_nomination_summary_nominated_by_label": { + "name": "version_participation_form_nomination_summary_nominated_by_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominiert von'" + }, + "version_participation_form_nomination_summary_empty_value": { + "name": "version_participation_form_nomination_summary_empty_value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'–'" + }, + "version_participation_form_success_self_heading": { + "name": "version_participation_form_success_self_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_participation_form_success_nomination_heading": { + "name": "version_participation_form_success_nomination_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nominierung eingegangen'" + }, + "version_participation_form_success_self_prefix": { + "name": "version_participation_form_success_self_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_participation_form_success_self_middle": { + "name": "version_participation_form_success_self_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir senden Ihnen den vollständigen Fragebogen an '" + }, + "version_participation_form_success_self_suffix": { + "name": "version_participation_form_success_self_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'.'" + }, + "version_participation_form_success_nomination_prefix": { + "name": "version_participation_form_success_nomination_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank, '" + }, + "version_participation_form_success_nomination_middle": { + "name": "version_participation_form_success_nomination_middle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'. Wir nehmen Kontakt mit '" + }, + "version_participation_form_success_nomination_suffix": { + "name": "version_participation_form_success_nomination_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "' auf und informieren sie über Ihre Nominierung.'" + }, + "version_about_hero_background_image_id": { + "name": "version_about_hero_background_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_hero_image_alt": { + "name": "version_about_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala'" + }, + "version_about_hero_eyebrow": { + "name": "version_about_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "version_about_hero_heading": { + "name": "version_about_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WERTE, DIE\nBAYERN BEWEGEN'" + }, + "version_about_hero_highlight": { + "name": "version_about_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BAYERN BEWEGEN'" + }, + "version_about_hero_description": { + "name": "version_about_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Seit 2005 ehrt der BMP herausragende Leistungen im bayerischen Mittelstand. Entdecken Sie die Geschichte, die Vision und die Menschen dahinter.'" + }, + "version_about_hero_primary_cta_label": { + "name": "version_about_hero_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_about_hero_primary_cta_url": { + "name": "version_about_hero_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_about_hero_secondary_cta_label": { + "name": "version_about_hero_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_about_hero_secondary_cta_url": { + "name": "version_about_hero_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_about_prize_image_id": { + "name": "version_about_prize_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_prize_image_alt": { + "name": "version_about_prize_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Gala Preisverleihung'" + }, + "version_about_prize_eyebrow": { + "name": "version_about_prize_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was ist der Preis?'" + }, + "version_about_prize_heading": { + "name": "version_about_prize_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DER BAYERISCHE\nMITTELSTANDSPREIS'" + }, + "version_about_prize_image_label": { + "name": "version_about_prize_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Preisverleihung · München'" + }, + "version_about_mittelstand_image_id": { + "name": "version_about_mittelstand_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_mittelstand_image_alt": { + "name": "version_about_mittelstand_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstand'" + }, + "version_about_mittelstand_eyebrow": { + "name": "version_about_mittelstand_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Relevanz & Zielsetzung'" + }, + "version_about_mittelstand_heading": { + "name": "version_about_mittelstand_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BEDEUTUNG FÜR\nDEN MITTELSTAND'" + }, + "version_about_highlights_fallback_image_id": { + "name": "version_about_highlights_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_about_highlights_eyebrow": { + "name": "version_about_highlights_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger-Highlights'" + }, + "version_about_highlights_heading": { + "name": "version_about_highlights_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AUSGEZEICHNETE 2025'" + }, + "version_about_highlights_cta_label": { + "name": "version_about_highlights_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_about_highlights_cta_url": { + "name": "version_about_highlights_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_about_highlights_hover_label": { + "name": "version_about_highlights_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Detail →'" + }, + "version_about_highlights_fallback_winner_name": { + "name": "version_about_highlights_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_highlights_fallback_winner_category": { + "name": "version_about_highlights_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_highlights_fallback_winner_award_type": { + "name": "version_about_highlights_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_about_highlights_year": { + "name": "version_about_highlights_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 2025 + }, + "version_about_testimonials_eyebrow": { + "name": "version_about_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Preisträger'" + }, + "version_about_testimonials_heading": { + "name": "version_about_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE\nPREISTRÄGER.'" + }, + "version_about_testimonials_desktop_heading": { + "name": "version_about_testimonials_desktop_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS SAGEN UNSERE PREISTRÄGER.'" + }, + "version_about_testimonials_year_prefix": { + "name": "version_about_testimonials_year_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_about_testimonials_previous_label": { + "name": "version_about_testimonials_previous_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorheriges'" + }, + "version_about_testimonials_next_label": { + "name": "version_about_testimonials_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Nächstes'" + }, + "version_about_testimonials_slide_label_prefix": { + "name": "version_about_testimonials_slide_label_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimme'" + }, + "version_about_history_eyebrow": { + "name": "version_about_history_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geschichte & Meilensteine'" + }, + "version_about_history_heading": { + "name": "version_about_history_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20 JAHRE\nMITTELSTANDSEXZELLENZ'" + }, + "version_about_history_highlight": { + "name": "version_about_history_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'MITTELSTANDS'" + }, + "version_about_history_watermark": { + "name": "version_about_history_watermark", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'20'" + }, + "version_about_goals_eyebrow": { + "name": "version_about_goals_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zielsetzung'" + }, + "version_about_goals_heading": { + "name": "version_about_goals_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WOFÜR WIR\nSTEHEN'" + }, + "version_about_values_eyebrow": { + "name": "version_about_values_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vorteile & Werte'" + }, + "version_about_values_heading": { + "name": "version_about_values_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WARUM DER\nBMP ZÄHLT'" + }, + "version_about_values_description": { + "name": "version_about_values_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Drei Dimensionen, die den Unterschied machen: für Ihr Unternehmen, Ihre Mitarbeitenden und Ihren Marktauftritt.'" + }, + "version_about_cta_eyebrow": { + "name": "version_about_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Starten Sie Ihre Reise'" + }, + "version_about_cta_heading": { + "name": "version_about_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'SCHREIBEN AUCH SIE GESCHICHTE'" + }, + "version_about_cta_description": { + "name": "version_about_cta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie Teil der Wall of Fame des bayerischen Mittelstands. Die Teilnahmegebühr beträgt 0 EUR und die Teilnahme lohnt sich in jeder Phase.'" + }, + "version_about_cta_primary_cta_label": { + "name": "version_about_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_about_cta_primary_cta_url": { + "name": "version_about_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_about_cta_secondary_prefix": { + "name": "version_about_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "version_about_cta_secondary_cta_label": { + "name": "version_about_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_about_cta_secondary_cta_url": { + "name": "version_about_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_impressum_hero_back_label": { + "name": "version_impressum_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_impressum_hero_eyebrow": { + "name": "version_impressum_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "version_impressum_hero_heading": { + "name": "version_impressum_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Impressum'" + }, + "version_impressum_hero_description_html": { + "name": "version_impressum_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Angaben gemäß §5 TMG · Zur Datenschutzerklärung →'" + }, + "version_impressum_navigation_toc_title": { + "name": "version_impressum_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "version_impressum_navigation_side_link_label": { + "name": "version_impressum_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutzerklärung →'" + }, + "version_impressum_navigation_side_link_url": { + "name": "version_impressum_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/datenschutz'" + }, + "version_datenschutz_hero_back_label": { + "name": "version_datenschutz_hero_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_datenschutz_hero_eyebrow": { + "name": "version_datenschutz_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Legal'" + }, + "version_datenschutz_hero_heading": { + "name": "version_datenschutz_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datenschutz­erklärung'" + }, + "version_datenschutz_hero_description_html": { + "name": "version_datenschutz_hero_description_html", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zuletzt aktualisiert: April 2026 · Zum Impressum →'" + }, + "version_datenschutz_navigation_toc_title": { + "name": "version_datenschutz_navigation_toc_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Inhalt'" + }, + "version_datenschutz_navigation_side_link_label": { + "name": "version_datenschutz_navigation_side_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zum Impressum →'" + }, + "version_datenschutz_navigation_side_link_url": { + "name": "version_datenschutz_navigation_side_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/impressum'" + }, + "version_preistraeger_index_hero_image_id": { + "name": "version_preistraeger_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_preistraeger_index_hero_image_url": { + "name": "version_preistraeger_index_hero_image_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=2000'" + }, + "version_preistraeger_index_hero_image_alt": { + "name": "version_preistraeger_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisverleihung'" + }, + "version_preistraeger_index_breadcrumb_label": { + "name": "version_preistraeger_index_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_preistraeger_index_count_label": { + "name": "version_preistraeger_index_count_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_preistraeger_index_empty_message": { + "name": "version_preistraeger_index_empty_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Preisträger für diese Auswahl.'" + }, + "version_preistraeger_index_card_fallback_image_id": { + "name": "version_preistraeger_index_card_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_preistraeger_index_card_hover_label": { + "name": "version_preistraeger_index_card_hover_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr erfahren'" + }, + "version_preistraeger_index_card_fallback_winner_name": { + "name": "version_preistraeger_index_card_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_preistraeger_index_card_fallback_winner_category": { + "name": "version_preistraeger_index_card_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_preistraeger_index_card_fallback_winner_award_type": { + "name": "version_preistraeger_index_card_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_preistraeger_index_card_fallback_winner_location": { + "name": "version_preistraeger_index_card_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_preistraeger_index_card_fallback_winner_industry": { + "name": "version_preistraeger_index_card_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "version_preistraeger_index_cta_text": { + "name": "version_preistraeger_index_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werden Sie der nächste Preisträger.'" + }, + "version_preistraeger_index_cta_primary_cta_label": { + "name": "version_preistraeger_index_cta_primary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt kostenlos bewerben'" + }, + "version_preistraeger_index_cta_primary_cta_url": { + "name": "version_preistraeger_index_cta_primary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_preistraeger_index_cta_secondary_prefix": { + "name": "version_preistraeger_index_cta_secondary_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Arbeit unterstützen:'" + }, + "version_preistraeger_index_cta_secondary_cta_label": { + "name": "version_preistraeger_index_cta_secondary_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_preistraeger_index_cta_secondary_cta_url": { + "name": "version_preistraeger_index_cta_secondary_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_press_index_hero_image_id": { + "name": "version_press_index_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_hero_image_alt": { + "name": "version_press_index_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse BMP'" + }, + "version_press_index_hero_eyebrow": { + "name": "version_press_index_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse & Newsroom'" + }, + "version_press_index_hero_heading": { + "name": "version_press_index_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS &\nBERICHTERSTATTUNG.'" + }, + "version_press_index_hero_description": { + "name": "version_press_index_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Termine, Pressemitteilungen und Medienmaterial rund um den Bayerischen Mittelstandspreis.'" + }, + "version_press_index_events_eyebrow": { + "name": "version_press_index_events_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termine 2026'" + }, + "version_press_index_events_heading": { + "name": "version_press_index_events_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'EVENTS RUND UM DEN PREIS.'" + }, + "version_press_index_events_description": { + "name": "version_press_index_events_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Von der Jurysitzung bis zur festlichen Gala – alle Veranstaltungen auf einen Blick.'" + }, + "version_press_index_events_detail_label": { + "name": "version_press_index_events_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "version_press_index_events_default_status_label": { + "name": "version_press_index_events_default_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Geplant'" + }, + "version_press_index_events_open_status_label": { + "name": "version_press_index_events_open_status_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anmeldung offen'" + }, + "version_press_index_events_missing_title_label": { + "name": "version_press_index_events_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_press_index_events_missing_date_label": { + "name": "version_press_index_events_missing_date_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "version_press_index_events_missing_location_label": { + "name": "version_press_index_events_missing_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_press_index_events_missing_category_label": { + "name": "version_press_index_events_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_press_index_events_collection_fallback_image_id": { + "name": "version_press_index_events_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_news_eyebrow": { + "name": "version_press_index_news_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "version_press_index_news_heading": { + "name": "version_press_index_news_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'NACHRICHTEN & EINBLICKE.'" + }, + "version_press_index_news_description": { + "name": "version_press_index_news_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Berichte, Hintergründe und Einblicke rund um den bayerischen Mittelstand und den BMP.'" + }, + "version_press_index_news_read_more_label": { + "name": "version_press_index_news_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "version_press_index_news_missing_title_label": { + "name": "version_press_index_news_missing_title_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_press_index_news_missing_category_label": { + "name": "version_press_index_news_missing_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_press_index_news_collection_fallback_image_id": { + "name": "version_press_index_news_collection_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_downloads_eyebrow": { + "name": "version_press_index_downloads_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt & Material'" + }, + "version_press_index_downloads_heading": { + "name": "version_press_index_downloads_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PRESSE-MATERIAL & KONTAKT.'" + }, + "version_press_index_downloads_description": { + "name": "version_press_index_downloads_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie unser offizielles Material herunter oder kontaktieren Sie direkt unser Presseteam für individuelle Anfragen.'" + }, + "version_press_index_downloads_kit_label": { + "name": "version_press_index_downloads_kit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Download Presse-Kit'" + }, + "version_press_index_downloads_kit_meta": { + "name": "version_press_index_downloads_kit_meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip – 1,5 MB'" + }, + "version_press_index_downloads_kit_file_id": { + "name": "version_press_index_downloads_kit_file_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_press_index_downloads_kit_url": { + "name": "version_press_index_downloads_kit_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/Print_BMP.zip'" + }, + "version_press_index_downloads_kit_download_name": { + "name": "version_press_index_downloads_kit_download_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Print_BMP.zip'" + }, + "version_press_index_downloads_contact_eyebrow": { + "name": "version_press_index_downloads_contact_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pressekontakt'" + }, + "version_press_index_downloads_contact_name": { + "name": "version_press_index_downloads_contact_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Tanja Meier'" + }, + "version_press_index_downloads_contact_lines": { + "name": "version_press_index_downloads_contact_lines", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'presse@bmp-bayern.de\n+49 89 123 456 99'" + }, + "version_press_index_accreditation_eyebrow": { + "name": "version_press_index_accreditation_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung'" + }, + "version_press_index_accreditation_heading": { + "name": "version_press_index_accreditation_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AKKREDITIERUNG ANFRAGEN.'" + }, + "version_press_index_accreditation_description": { + "name": "version_press_index_accreditation_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Melden Sie sich für unsere Presse-Verteiler an oder fordern Sie eine Akkreditierung für die Gala-Verleihung an.'" + }, + "version_press_index_accreditation_medium_label": { + "name": "version_press_index_accreditation_medium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Medium / Redaktion *'" + }, + "version_press_index_accreditation_name_label": { + "name": "version_press_index_accreditation_name_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Name *'" + }, + "version_press_index_accreditation_email_label": { + "name": "version_press_index_accreditation_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail-Adresse *'" + }, + "version_press_index_accreditation_submit_label": { + "name": "version_press_index_accreditation_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Akkreditierung anfragen'" + }, + "version_press_index_accreditation_success_heading": { + "name": "version_press_index_accreditation_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_press_index_accreditation_success_message": { + "name": "version_press_index_accreditation_success_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank für Ihre Akkreditierungsanfrage. Unser Presseteam meldet sich zeitnah bei Ihnen.'" + }, + "version_form_upload_hero_eyebrow": { + "name": "version_form_upload_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026 – Bewerbungsportal'" + }, + "version_form_upload_hero_heading": { + "name": "version_form_upload_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERLAGEN\nEINREICHEN'" + }, + "version_form_upload_hero_description": { + "name": "version_form_upload_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Laden Sie Ihre Bewerbungsunterlagen sicher hoch. Alle Einreichungen werden vertraulich behandelt und direkt an die Jury weitergeleitet.'" + }, + "version_form_upload_breadcrumb_label": { + "name": "version_form_upload_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Formular hochladen'" + }, + "version_form_upload_requirements_eyebrow": { + "name": "version_form_upload_requirements_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Was wird benötigt?'" + }, + "version_form_upload_requirements_heading": { + "name": "version_form_upload_requirements_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'ANFORDERUNGEN & FRISTEN'" + }, + "version_form_upload_upload_eyebrow": { + "name": "version_form_upload_upload_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung'" + }, + "version_form_upload_upload_heading": { + "name": "version_form_upload_upload_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DATEIEN HOCHLADEN'" + }, + "version_form_upload_upload_drop_title": { + "name": "version_form_upload_upload_drop_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dateien hierher ziehen'" + }, + "version_form_upload_upload_drop_description": { + "name": "version_form_upload_upload_drop_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'oder klicken zum Auswählen'" + }, + "version_form_upload_upload_accepted_formats": { + "name": "version_form_upload_upload_accepted_formats", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PDF\nDOCX\nXLSX\nPPT'" + }, + "version_form_upload_upload_file_remove_label": { + "name": "version_form_upload_upload_file_remove_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei entfernen'" + }, + "version_form_upload_upload_note_title": { + "name": "version_form_upload_upload_note_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis'" + }, + "version_form_upload_upload_note": { + "name": "version_form_upload_upload_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stellen Sie sicher, dass alle Pflichtdokumente vollständig sind, bevor Sie einreichen. Unvollständige Bewerbungen können nicht berücksichtigt werden.'" + }, + "version_form_upload_upload_selected_submit_prefix": { + "name": "version_form_upload_upload_selected_submit_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Datei'" + }, + "version_form_upload_upload_selected_submit_plural_suffix": { + "name": "version_form_upload_upload_selected_submit_plural_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'en'" + }, + "version_form_upload_upload_selected_submit_action": { + "name": "version_form_upload_upload_selected_submit_action", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'einreichen'" + }, + "version_form_upload_upload_empty_submit_label": { + "name": "version_form_upload_upload_empty_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Keine Dateien ausgewählt'" + }, + "version_form_upload_upload_privacy_note": { + "name": "version_form_upload_upload_privacy_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mit der Einreichung stimmen Sie der Verarbeitung Ihrer Daten gemäß unserer Datenschutzerklärung zu.'" + }, + "version_form_upload_success_heading": { + "name": "version_form_upload_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Einreichung erfolgreich'" + }, + "version_form_upload_success_description": { + "name": "version_form_upload_success_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihre Unterlagen wurden übermittelt. Sie erhalten eine Bestätigung per E-Mail. Die Jury meldet sich bis August 2026.'" + }, + "version_form_upload_success_link_label": { + "name": "version_form_upload_success_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "version_form_upload_success_link_url": { + "name": "version_form_upload_success_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_form_upload_cta_eyebrow": { + "name": "version_form_upload_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Noch Fragen zur Einreichung?'" + }, + "version_form_upload_cta_contact_label": { + "name": "version_form_upload_cta_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kontakt aufnehmen'" + }, + "version_form_upload_cta_contact_url": { + "name": "version_form_upload_cta_contact_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "version_form_upload_cta_button_label": { + "name": "version_form_upload_cta_button_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Teilnahmeseite'" + }, + "version_form_upload_cta_button_url": { + "name": "version_form_upload_cta_button_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_netzwerk_hero_image_id": { + "name": "version_netzwerk_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_netzwerk_hero_image_alt": { + "name": "version_netzwerk_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Netzwerk Preisverleihung'" + }, + "version_netzwerk_hero_eyebrow": { + "name": "version_netzwerk_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury & Partner'" + }, + "version_netzwerk_hero_heading": { + "name": "version_netzwerk_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DAS NETZWERK\nHINTER DEM AWARD.'" + }, + "version_netzwerk_hero_highlight": { + "name": "version_netzwerk_hero_highlight", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'AWARD.'" + }, + "version_netzwerk_hero_description": { + "name": "version_netzwerk_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis wird getragen von einem starken Netzwerk aus Schirmherrschaft, unabhängiger Fach-Jury und langjährigen Partnern aus Wirtschaft und Gesellschaft.'" + }, + "version_netzwerk_patronage_eyebrow": { + "name": "version_netzwerk_patronage_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Schirmherrschaft'" + }, + "version_netzwerk_patronage_heading": { + "name": "version_netzwerk_patronage_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin und Schirmherr'" + }, + "version_netzwerk_patronage_description": { + "name": "version_netzwerk_patronage_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'des Bayerischen Mittelstandspreises'" + }, + "version_netzwerk_patronage_greeting_eyebrow": { + "name": "version_netzwerk_patronage_greeting_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Grußwort'" + }, + "version_netzwerk_patronage_greeting_role": { + "name": "version_netzwerk_patronage_greeting_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schirmherrin'" + }, + "version_netzwerk_patronage_greeting_name": { + "name": "version_netzwerk_patronage_greeting_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ilse Aigner MdL'" + }, + "version_netzwerk_patronage_greeting_title_line1": { + "name": "version_netzwerk_patronage_greeting_title_line1", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Präsidentin des Bayerischen Landtags'" + }, + "version_netzwerk_patronage_greeting_title_line2": { + "name": "version_netzwerk_patronage_greeting_title_line2", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerische Staatsministerin für Wirtschaft a.D.'" + }, + "version_netzwerk_patronage_greeting_quote": { + "name": "version_netzwerk_patronage_greeting_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'„Der Bayerische Mittelstandspreis steht für das, was Bayern stark macht: Unternehmergeist, Verantwortung und Qualität. Mit großer Freude übernehme ich erneut die Schirmherrschaft für diesen bedeutenden Preis.“'" + }, + "version_netzwerk_patronage_greeting_attribution": { + "name": "version_netzwerk_patronage_greeting_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'– Ilse Aigner MdL, Präsidentin des Bayerischen Landtags'" + }, + "version_netzwerk_jury_intro_eyebrow": { + "name": "version_netzwerk_jury_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wer entscheidet?'" + }, + "version_netzwerk_jury_intro_heading": { + "name": "version_netzwerk_jury_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNABHÄNGIGE EXPERTISE FÜR DEN MITTELSTAND.'" + }, + "version_netzwerk_jury_intro_description": { + "name": "version_netzwerk_jury_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises besteht ausschließlich aus ehrenamtlich tätigen Expertinnen und Experten. Kein Mitglied steht in wirtschaftlicher Verbindung zu einem Bewerber – Transparenz und Unparteilichkeit sind die Grundpfeiler unseres Verfahrens.'" + }, + "version_netzwerk_jury_eyebrow": { + "name": "version_netzwerk_jury_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Gremium'" + }, + "version_netzwerk_jury_heading": { + "name": "version_netzwerk_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNSERE JURY 2026'" + }, + "version_netzwerk_jury_description": { + "name": "version_netzwerk_jury_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unabhängige Expertinnen und Experten aus Wirtschaft, Wissenschaft und Verbänden, für einen vollständig unabhängigen Bewertungsprozess.'" + }, + "version_netzwerk_jury_chair_badge": { + "name": "version_netzwerk_jury_chair_badge", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jury-Vorsitz'" + }, + "version_netzwerk_jury_note": { + "name": "version_netzwerk_jury_note", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hinweis: Einzelne Persönlichkeiten engagieren sich sowohl in der Jury als auch als Partner des BMP – beide Rollen werden auf dieser Seite getrennt ausgewiesen.'" + }, + "version_netzwerk_expertise_eyebrow": { + "name": "version_netzwerk_expertise_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Hintergrund & Expertise'" + }, + "version_netzwerk_expertise_heading": { + "name": "version_netzwerk_expertise_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIE BEWERTET DIE JURY?'" + }, + "version_netzwerk_expertise_quote": { + "name": "version_netzwerk_expertise_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des BMP ist vollständig von wirtschaftlichen Interessen unabhängig. Jede Entscheidung wird transparent nachvollzogen – das ist unser Versprechen an die Unternehmen Bayerns.'" + }, + "version_netzwerk_expertise_quote_attribution": { + "name": "version_netzwerk_expertise_quote_attribution", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Prof. Dr. Klaus Bergmann, Juryvorsitzender'" + }, + "version_netzwerk_partners_eyebrow": { + "name": "version_netzwerk_partners_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netzwerkqualität'" + }, + "version_netzwerk_partners_heading": { + "name": "version_netzwerk_partners_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'PARTNER & SPONSOREN'" + }, + "version_netzwerk_partners_description": { + "name": "version_netzwerk_partners_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Partner in drei Kategorien: Hauptsponsoren, Medienpartner und weitere Sponsoren. Klicken für Details.'" + }, + "version_netzwerk_partners_detail_label": { + "name": "version_netzwerk_partners_detail_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Details'" + }, + "version_netzwerk_partners_premium_label": { + "name": "version_netzwerk_partners_premium_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Premium'" + }, + "version_netzwerk_partners_default_logo_color": { + "name": "version_netzwerk_partners_default_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#111D55'" + }, + "version_netzwerk_partners_modal_industry_label": { + "name": "version_netzwerk_partners_modal_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_netzwerk_partners_modal_location_label": { + "name": "version_netzwerk_partners_modal_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_netzwerk_partners_modal_web_label": { + "name": "version_netzwerk_partners_modal_web_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Web'" + }, + "version_netzwerk_partners_modal_about_label": { + "name": "version_netzwerk_partners_modal_about_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "version_netzwerk_partners_modal_website_label": { + "name": "version_netzwerk_partners_modal_website_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen'" + }, + "version_netzwerk_partners_modal_close_label": { + "name": "version_netzwerk_partners_modal_close_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schließen'" + }, + "version_netzwerk_partners_modal_footer_title": { + "name": "version_netzwerk_partners_modal_footer_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis 2026'" + }, + "version_netzwerk_partners_modal_footer_role_prefix": { + "name": "version_netzwerk_partners_modal_footer_role_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Offizieller'" + }, + "version_netzwerk_sponsoring_eyebrow": { + "name": "version_netzwerk_sponsoring_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wachstum durch Partnerschaft'" + }, + "version_netzwerk_sponsoring_heading": { + "name": "version_netzwerk_sponsoring_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WIR FREUEN UNS ÜBER NEUE SPONSOREN.'" + }, + "version_netzwerk_sponsoring_description": { + "name": "version_netzwerk_sponsoring_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Positionieren Sie Ihre Marke im exklusivsten Netzwerk des bayerischen Mittelstands – mit maßgeschneiderten Sponsoring-Paketen.'" + }, + "version_netzwerk_sponsoring_image_id": { + "name": "version_netzwerk_sponsoring_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_netzwerk_sponsoring_image_alt": { + "name": "version_netzwerk_sponsoring_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "version_netzwerk_sponsoring_image_label": { + "name": "version_netzwerk_sponsoring_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Partnernetzwerk'" + }, + "version_netzwerk_sponsoring_form_eyebrow": { + "name": "version_netzwerk_sponsoring_form_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Sponsoring 2026'" + }, + "version_netzwerk_sponsoring_footnote_prefix": { + "name": "version_netzwerk_sponsoring_footnote_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Oder:'" + }, + "version_netzwerk_sponsoring_footnote_label": { + "name": "version_netzwerk_sponsoring_footnote_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitglied werden'" + }, + "version_netzwerk_sponsoring_footnote_url": { + "name": "version_netzwerk_sponsoring_footnote_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + }, + "version_netzwerk_sponsoring_form_step1_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step1_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 1 – Paket wählen'" + }, + "version_netzwerk_sponsoring_form_step1_heading": { + "name": "version_netzwerk_sponsoring_form_step1_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Interesse an'" + }, + "version_netzwerk_sponsoring_form_step2_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step2_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 2 – Unternehmen'" + }, + "version_netzwerk_sponsoring_form_step2_heading": { + "name": "version_netzwerk_sponsoring_form_step2_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ihr Unternehmen'" + }, + "version_netzwerk_sponsoring_form_company_label": { + "name": "version_netzwerk_sponsoring_form_company_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Unternehmen *'" + }, + "version_netzwerk_sponsoring_form_company_placeholder": { + "name": "version_netzwerk_sponsoring_form_company_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Firmenname'" + }, + "version_netzwerk_sponsoring_form_industry_label": { + "name": "version_netzwerk_sponsoring_form_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_netzwerk_sponsoring_form_industry_placeholder": { + "name": "version_netzwerk_sponsoring_form_industry_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'z. B. Finanzdienstleistungen'" + }, + "version_netzwerk_sponsoring_form_step3_eyebrow": { + "name": "version_netzwerk_sponsoring_form_step3_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Schritt 3 – Kontakt'" + }, + "version_netzwerk_sponsoring_form_step3_heading": { + "name": "version_netzwerk_sponsoring_form_step3_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner'" + }, + "version_netzwerk_sponsoring_form_contact_label": { + "name": "version_netzwerk_sponsoring_form_contact_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ansprechpartner *'" + }, + "version_netzwerk_sponsoring_form_contact_placeholder": { + "name": "version_netzwerk_sponsoring_form_contact_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vor- und Nachname'" + }, + "version_netzwerk_sponsoring_form_email_label": { + "name": "version_netzwerk_sponsoring_form_email_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'E-Mail *'" + }, + "version_netzwerk_sponsoring_form_email_placeholder": { + "name": "version_netzwerk_sponsoring_form_email_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'name@unternehmen.de'" + }, + "version_netzwerk_sponsoring_form_back_label": { + "name": "version_netzwerk_sponsoring_form_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück'" + }, + "version_netzwerk_sponsoring_form_next_label": { + "name": "version_netzwerk_sponsoring_form_next_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiter'" + }, + "version_netzwerk_sponsoring_form_submit_label": { + "name": "version_netzwerk_sponsoring_form_submit_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Exposé anfordern'" + }, + "version_netzwerk_sponsoring_form_required_package_error": { + "name": "version_netzwerk_sponsoring_form_required_package_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen Sie ein Paket.'" + }, + "version_netzwerk_sponsoring_form_required_field_error": { + "name": "version_netzwerk_sponsoring_form_required_field_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Pflichtfeld'" + }, + "version_netzwerk_sponsoring_form_invalid_email_error": { + "name": "version_netzwerk_sponsoring_form_invalid_email_error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ungültige E-Mail'" + }, + "version_netzwerk_sponsoring_form_done_label": { + "name": "version_netzwerk_sponsoring_form_done_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓'" + }, + "version_netzwerk_sponsoring_form_success_heading": { + "name": "version_netzwerk_sponsoring_form_success_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anfrage eingegangen'" + }, + "version_netzwerk_sponsoring_form_success_message_prefix": { + "name": "version_netzwerk_sponsoring_form_success_message_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vielen Dank,'" + }, + "version_netzwerk_sponsoring_form_success_message_suffix": { + "name": "version_netzwerk_sponsoring_form_success_message_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir senden Ihnen unser Sponsoring-Exposé innerhalb von 48 Stunden zu.'" + }, + "version_netzwerk_sponsoring_form_footer_text": { + "name": "version_netzwerk_sponsoring_form_footer_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Wir melden uns innerhalb von 48 Stunden.'" + }, + "version_mitglied_werden_header_brand_label": { + "name": "version_mitglied_werden_header_brand_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP 2026'" + }, + "version_mitglied_werden_header_back_label": { + "name": "version_mitglied_werden_header_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Website'" + }, + "version_mitglied_werden_header_back_url": { + "name": "version_mitglied_werden_header_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/'" + }, + "version_mitglied_werden_hero_image_id": { + "name": "version_mitglied_werden_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_mitglied_werden_hero_image_alt": { + "name": "version_mitglied_werden_hero_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitgliedschaft'" + }, + "version_mitglied_werden_hero_eyebrow": { + "name": "version_mitglied_werden_hero_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vereinsmitgliedschaft'" + }, + "version_mitglied_werden_hero_heading": { + "name": "version_mitglied_werden_hero_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DEIN WEG ZU UNS.'" + }, + "version_mitglied_werden_hero_description": { + "name": "version_mitglied_werden_hero_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Bayerische Mittelstandspreis lebt vom Engagement seiner Mitglieder.\nEine Mitgliedschaft ist Unterstützung, damit der Preis weiterhin unabhängig\nund kostenlos umgesetzt werden kann.'" + }, + "version_mitglied_werden_benefits_eyebrow": { + "name": "version_mitglied_werden_benefits_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Deine Vorteile'" + }, + "version_mitglied_werden_benefits_heading": { + "name": "version_mitglied_werden_benefits_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS DU GEWINNST.'" + }, + "version_mitglied_werden_about_eyebrow": { + "name": "version_mitglied_werden_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Der Verein'" + }, + "version_mitglied_werden_about_heading": { + "name": "version_mitglied_werden_about_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WER WIR SIND.'" + }, + "version_mitglied_werden_about_descriptor": { + "name": "version_mitglied_werden_about_descriptor", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis e.V., eingetragener gemeinnütziger Verein'" + }, + "version_mitglied_werden_pricing_eyebrow": { + "name": "version_mitglied_werden_pricing_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitgliedsbeitrag'" + }, + "version_mitglied_werden_pricing_heading": { + "name": "version_mitglied_werden_pricing_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'IHR BEITRAG.'" + }, + "version_mitglied_werden_pricing_employee_label": { + "name": "version_mitglied_werden_pricing_employee_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Anzahl Mitarbeiter wählen'" + }, + "version_mitglied_werden_pricing_select_placeholder": { + "name": "version_mitglied_werden_pricing_select_placeholder", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bitte wählen…'" + }, + "version_mitglied_werden_pricing_option_suffix": { + "name": "version_mitglied_werden_pricing_option_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_mitglied_werden_pricing_result_eyebrow": { + "name": "version_mitglied_werden_pricing_result_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Beitragsübersicht'" + }, + "version_mitglied_werden_pricing_annual_net_label": { + "name": "version_mitglied_werden_pricing_annual_net_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (netto)'" + }, + "version_mitglied_werden_pricing_annual_gross_label": { + "name": "version_mitglied_werden_pricing_annual_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (19 % MwSt.)'" + }, + "version_mitglied_werden_pricing_annual_gross_short_label": { + "name": "version_mitglied_werden_pricing_annual_gross_short_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahresbeitrag (brutto)'" + }, + "version_mitglied_werden_pricing_admission_gross_label": { + "name": "version_mitglied_werden_pricing_admission_gross_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aufnahmegebühr (brutto)'" + }, + "version_mitglied_werden_pricing_total_year_one_label": { + "name": "version_mitglied_werden_pricing_total_year_one_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gesamt Jahr 1 (anteilig)'" + }, + "version_mitglied_werden_pricing_footnote": { + "name": "version_mitglied_werden_pricing_footnote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'* Anteilig ab nächstem Monatsersten bis 31.12. des laufenden Jahres. Ab dem Folgejahr gilt der volle Jahresbeitrag.'" + }, + "version_mitglied_werden_pricing_cta_label": { + "name": "version_mitglied_werden_pricing_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden →'" + }, + "version_mitglied_werden_pricing_cta_href": { + "name": "version_mitglied_werden_pricing_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "version_mitglied_werden_pricing_table_toggle_label": { + "name": "version_mitglied_werden_pricing_table_toggle_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Vollständige Beitragsstaffel'" + }, + "version_mitglied_werden_pricing_table_employee_header": { + "name": "version_mitglied_werden_pricing_table_employee_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitarbeiter'" + }, + "version_mitglied_werden_pricing_table_net_header": { + "name": "version_mitglied_werden_pricing_table_net_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Netto / Jahr'" + }, + "version_mitglied_werden_pricing_table_gross_header": { + "name": "version_mitglied_werden_pricing_table_gross_header", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Brutto / Jahr'" + }, + "version_mitglied_werden_pricing_table_note_prefix": { + "name": "version_mitglied_werden_pricing_table_note_prefix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zzgl. einmalige Aufnahmegebühr'" + }, + "version_mitglied_werden_pricing_table_note_suffix": { + "name": "version_mitglied_werden_pricing_table_note_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'(brutto) im ersten Jahr. Alle Angaben inkl. 19 % MwSt.'" + }, + "version_mitglied_werden_pricing_vat_rate": { + "name": "version_mitglied_werden_pricing_vat_rate", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0.19 + }, + "version_mitglied_werden_pricing_admission_fee_net": { + "name": "version_mitglied_werden_pricing_admission_fee_net", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 500 + }, + "version_mitglied_werden_form_intro_eyebrow": { + "name": "version_mitglied_werden_form_intro_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt beitreten'" + }, + "version_mitglied_werden_form_intro_heading": { + "name": "version_mitglied_werden_form_intro_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'DU BIST DABEI.'" + }, + "version_mitglied_werden_form_intro_description": { + "name": "version_mitglied_werden_form_intro_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Fülle das Formular aus und wir melden uns innerhalb von 48 Stunden bei dir.\nDie Mitgliedschaft beginnt mit Bestätigung durch den Vorstand.'" + }, + "version_mitglied_werden_form_intro_image_id": { + "name": "version_mitglied_werden_form_intro_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_mitglied_werden_form_intro_image_alt": { + "name": "version_mitglied_werden_form_intro_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder'" + }, + "version_mitglied_werden_form_intro_image_label": { + "name": "version_mitglied_werden_form_intro_image_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Mitglieder 2025'" + }, + "version_mitglied_werden_wizard": { + "name": "version_mitglied_werden_wizard", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"requiredSuffix\":\"*\",\"optionalSuffix\":\"(optional)\",\"stepCounterTemplate\":\"Schritt {step} von {total}\",\"reviewFallback\":\"–\",\"nav\":{\"backLabel\":\"← Zurück\",\"nextLabel\":\"Weiter →\",\"submitLabel\":\"Mitgliedschaftsantrag verbindlich einreichen\"},\"steps\":[{\"id\":1,\"label\":\"Unternehmen\"},{\"id\":2,\"label\":\"Kontakt\"},{\"id\":3,\"label\":\"Details\"},{\"id\":4,\"label\":\"Zahlung\"},{\"id\":5,\"label\":\"Abschluss\"}],\"validation\":{\"required\":\"Pflichtfeld\",\"select\":\"Bitte wählen\",\"postalCode\":\"5-stellige PLZ erforderlich\",\"email\":\"Gültige E-Mail erforderlich\",\"iban\":\"Ungültige IBAN (DE, 22 Zeichen)\",\"sepa\":\"Bitte SEPA-Mandat bestätigen\"},\"tiers\":[{\"max\":10,\"label\":\"bis 10\",\"annual\":480},{\"max\":20,\"label\":\"bis 20\",\"annual\":600},{\"max\":50,\"label\":\"bis 50\",\"annual\":900},{\"max\":100,\"label\":\"bis 100\",\"annual\":1200},{\"max\":250,\"label\":\"bis 250\",\"annual\":2400},{\"max\":1000,\"label\":\"bis 1.000\",\"annual\":3600}],\"vatRate\":0.19,\"admissionFeeNet\":500,\"pricingSummary\":{\"eyebrow\":\"Beitragsübersicht\",\"annualNetLabel\":\"Jahresbeitrag (netto)\",\"annualGrossLabel\":\"Jahresbeitrag (brutto)\",\"admissionGrossLabel\":\"Aufnahmegebühr (brutto)\",\"totalYearOneLabel\":\"Gesamt Jahr 1 (anteilig)\"},\"fields\":{\"company\":{\"title\":\"Ihr Unternehmen\",\"subtitle\":\"Angaben zum antragstellenden Unternehmen\",\"legalForms\":[\"GmbH\",\"GmbH & Co. KG\",\"AG\",\"UG\",\"KG\",\"OHG\",\"GbR\",\"Einzelunternehmen\",\"e.K.\",\"Sonstige\"],\"companyNameLabel\":\"Firmenname\",\"companyNamePlaceholder\":\"Muster GmbH\",\"legalFormLabel\":\"Rechtsform\",\"employeesLabel\":\"Anzahl Mitarbeiter\",\"streetLabel\":\"Straße & Hausnummer\",\"streetPlaceholder\":\"Musterstraße 42\",\"postalCodeLabel\":\"PLZ\",\"postalCodePlaceholder\":\"12345\",\"cityLabel\":\"Ort\",\"cityPlaceholder\":\"Berlin\",\"websiteLabel\":\"Website\",\"websitePlaceholder\":\"https://www.ihrewebsite.de\"},\"contact\":{\"title\":\"Kontaktperson\",\"subtitle\":\"Ansprechpartner für die Mitgliedschaft\",\"salutations\":[\"Herr\",\"Frau\",\"Divers\"],\"salutationLabel\":\"Anrede\",\"firstNameLabel\":\"Vorname\",\"firstNamePlaceholder\":\"Max\",\"lastNameLabel\":\"Nachname\",\"lastNamePlaceholder\":\"Mustermann\",\"positionLabel\":\"Position / Funktion\",\"positionPlaceholder\":\"z. B. Geschäftsführer\",\"emailLabel\":\"E-Mail-Adresse\",\"emailPlaceholder\":\"max@muster.de\",\"phoneLabel\":\"Telefon\",\"phonePlaceholder\":\"+49 30 123456\"},\"details\":{\"title\":\"Mitgliedschaft & Details\",\"subtitle\":\"Beitragsübersicht und Eintrittsdatum\",\"entryDateLabel\":\"Gewünschtes Eintrittsdatum\",\"referralLabel\":\"Wie wurden Sie aufmerksam?\",\"referralOptions\":[\"Empfehlung\",\"Veranstaltung\",\"Google\",\"Social Media\",\"Presse\",\"Sonstiges\"],\"motivationLabel\":\"Ihre Motivation (optional)\",\"motivationPlaceholder\":\"Was erhoffen Sie sich von der Mitgliedschaft beim BMP e.V.?\",\"motivationMaxLength\":500},\"payment\":{\"title\":\"SEPA-Lastschriftmandat\",\"subtitle\":\"Bankverbindung für den Beitragseinzug\",\"mandateText\":\"Ich ermächtige den BMP e.V., Zahlungen von meinem Konto mittels Lastschrift einzuziehen. Zugleich weise ich mein Kreditinstitut an, die vom BMP e.V. auf mein Konto gezogenen Lastschriften einzulösen. Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des belasteten Betrages verlangen. Es gelten dabei die mit meinem Kreditinstitut vereinbarten Bedingungen. Die Mandatsreferenz wird separat mitgeteilt. Gläubiger-Identifikationsnummer: DE98ZZZ09999999999.\",\"accountHolderLabel\":\"Kontoinhaber\",\"accountHolderPlaceholder\":\"Max Mustermann\",\"ibanLabel\":\"IBAN\",\"ibanPlaceholder\":\"DE00 0000 0000 0000 0000 00\",\"ibanValidLabel\":\"✓ OK\",\"ibanPendingLabel\":\"…\",\"bicLabel\":\"BIC\",\"bicPlaceholder\":\"BELADEBEXXX\",\"bicAutoPlaceholder\":\"Wird ausgefüllt\",\"bankLabel\":\"Bank / Kreditinstitut\",\"bankPlaceholder\":\"Berliner Sparkasse\",\"sepaCheckboxLabel\":\"Ich bestätige das SEPA-Lastschriftmandat und ermächtige den BMP e.V. zum Einzug.\"},\"summary\":{\"title\":\"Zusammenfassung & Abschluss\",\"subtitle\":\"Bitte prüfen Sie Ihre Angaben\",\"companyAccordion\":\"Unternehmen\",\"contactAccordion\":\"Kontaktperson\",\"paymentAccordion\":\"Zahlung\",\"requiredTitle\":\"Pflichtbestätigungen\",\"optionalTitle\":\"Optional\",\"labels\":{\"companyName\":\"Firmenname\",\"legalForm\":\"Rechtsform\",\"address\":\"Adresse\",\"employees\":\"Mitarbeiter\",\"website\":\"Website\",\"name\":\"Name\",\"position\":\"Position\",\"email\":\"E-Mail\",\"phone\":\"Telefon\",\"accountHolder\":\"Kontoinhaber\",\"iban\":\"IBAN\",\"bic\":\"BIC\",\"bank\":\"Bank\",\"entryDate\":\"Eintrittsdatum\",\"annualContribution\":\"Jahresbeitrag\"},\"consents\":{\"satzung\":\"Ich habe die Satzung des BMP e.V. gelesen und erkenne sie an.\",\"datenschutz\":\"Ich habe die Datenschutzerklärung gelesen und stimme zu.\",\"widerruf\":\"Ich habe die Kündigungsfrist zur Kenntnis genommen (1 Jahr zum Jahresende).\",\"newsletter\":\"Ich möchte elektronische Informationen, Einladungen und den Newsletter erhalten.\",\"websitePub\":\"Meinen Firmennamen auf der Website des BMP e.V. als Mitglied veröffentlichen.\"}}},\"success\":{\"heading\":\"Ihr Antrag ist eingegangen.\",\"message\":\"Wir melden uns innerhalb von 5 Werktagen bei Ihnen.\",\"nextStepsTitle\":\"Ihre nächsten Schritte\",\"steps\":[{\"num\":\"1\",\"title\":\"Bestätigung per E-Mail\",\"desc\":\"Sie erhalten in Kürze eine Eingangsbestätigung.\"},{\"num\":\"2\",\"title\":\"Prüfung durch den Vorstand\",\"desc\":\"Ihr Antrag wird in der nächsten Sitzung behandelt.\"},{\"num\":\"3\",\"title\":\"Willkommen im BMP e.V.\",\"desc\":\"Nach Bestätigung erhalten Sie Ihre Mitgliedsdaten.\"}]}}'" + }, + "version_mitglied_werden_testimonials_eyebrow": { + "name": "version_mitglied_werden_testimonials_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Stimmen der Mitglieder'" + }, + "version_mitglied_werden_testimonials_heading": { + "name": "version_mitglied_werden_testimonials_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'WAS MITGLIEDER SAGEN.'" + }, + "version_mitglied_werden_faq_eyebrow": { + "name": "version_mitglied_werden_faq_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Häufige Fragen'" + }, + "version_mitglied_werden_faq_heading": { + "name": "version_mitglied_werden_faq_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'FAQ.'" + }, + "version_mitglied_werden_bottom_cta_eyebrow": { + "name": "version_mitglied_werden_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Werde Teil des BMP'" + }, + "version_mitglied_werden_bottom_cta_heading": { + "name": "version_mitglied_werden_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'UNTERSTÜTZE. NETZWERKE. WIRKE.'" + }, + "version_mitglied_werden_bottom_cta_cta_label": { + "name": "version_mitglied_werden_bottom_cta_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt Mitglied werden'" + }, + "version_mitglied_werden_bottom_cta_cta_href": { + "name": "version_mitglied_werden_bottom_cta_cta_href", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'#mitglied-formular'" + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_image_id": { + "name": "version_meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_parent_idx": { + "name": "_pages_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_pages_v_version_hero_version_hero_media_idx": { + "name": "_pages_v_version_hero_version_hero_media_idx", + "columns": [ + "version_hero_media_id" + ], + "isUnique": false + }, + "_pages_v_version_home_hero_version_home_hero_background__idx": { + "name": "_pages_v_version_home_hero_version_home_hero_background__idx", + "columns": [ + "version_home_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_quick_check_version_home_quick_che_idx": { + "name": "_pages_v_version_home_quick_check_version_home_quick_che_idx", + "columns": [ + "version_home_quick_check_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_intro_version_home_intro_image_idx": { + "name": "_pages_v_version_home_intro_version_home_intro_image_idx", + "columns": [ + "version_home_intro_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_winners_version_home_winners_fallb_idx": { + "name": "_pages_v_version_home_winners_version_home_winners_fallb_idx", + "columns": [ + "version_home_winners_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_benefits_version_home_benefits_ima_idx": { + "name": "_pages_v_version_home_benefits_version_home_benefits_ima_idx", + "columns": [ + "version_home_benefits_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_application_version_home_applicati_idx": { + "name": "_pages_v_version_home_application_version_home_applicati_idx", + "columns": [ + "version_home_application_award_image_id" + ], + "isUnique": false + }, + "_pages_v_version_home_video_modal_version_home_video_mod_idx": { + "name": "_pages_v_version_home_video_modal_version_home_video_mod_idx", + "columns": [ + "version_home_video_modal_video_id" + ], + "isUnique": false + }, + "_pages_v_version_contact_hero_version_contact_hero_backg_idx": { + "name": "_pages_v_version_contact_hero_version_contact_hero_backg_idx", + "columns": [ + "version_contact_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_contact_info_version_contact_info_form__idx": { + "name": "_pages_v_version_contact_info_version_contact_info_form__idx", + "columns": [ + "version_contact_info_form_image_id" + ], + "isUnique": false + }, + "_pages_v_version_participation_hero_version_participatio_idx": { + "name": "_pages_v_version_participation_hero_version_participatio_idx", + "columns": [ + "version_participation_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_participation_application_form_version__idx": { + "name": "_pages_v_version_participation_application_form_version__idx", + "columns": [ + "version_participation_application_form_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_hero_version_about_hero_backgroun_idx": { + "name": "_pages_v_version_about_hero_version_about_hero_backgroun_idx", + "columns": [ + "version_about_hero_background_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_prize_version_about_prize_image_idx": { + "name": "_pages_v_version_about_prize_version_about_prize_image_idx", + "columns": [ + "version_about_prize_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_mittelstand_version_about_mittels_idx": { + "name": "_pages_v_version_about_mittelstand_version_about_mittels_idx", + "columns": [ + "version_about_mittelstand_image_id" + ], + "isUnique": false + }, + "_pages_v_version_about_highlights_version_about_highligh_idx": { + "name": "_pages_v_version_about_highlights_version_about_highligh_idx", + "columns": [ + "version_about_highlights_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_preistraeger_index_hero_version_preistr_idx": { + "name": "_pages_v_version_preistraeger_index_hero_version_preistr_idx", + "columns": [ + "version_preistraeger_index_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_preistraeger_index_card_version_preistr_idx": { + "name": "_pages_v_version_preistraeger_index_card_version_preistr_idx", + "columns": [ + "version_preistraeger_index_card_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_hero_version_press_index_he_idx": { + "name": "_pages_v_version_press_index_hero_version_press_index_he_idx", + "columns": [ + "version_press_index_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_events_version_press_index__idx": { + "name": "_pages_v_version_press_index_events_version_press_index__idx", + "columns": [ + "version_press_index_events_collection_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_news_version_press_index_ne_idx": { + "name": "_pages_v_version_press_index_news_version_press_index_ne_idx", + "columns": [ + "version_press_index_news_collection_fallback_image_id" + ], + "isUnique": false + }, + "_pages_v_version_press_index_downloads_version_press_ind_idx": { + "name": "_pages_v_version_press_index_downloads_version_press_ind_idx", + "columns": [ + "version_press_index_downloads_kit_file_id" + ], + "isUnique": false + }, + "_pages_v_version_netzwerk_hero_version_netzwerk_hero_ima_idx": { + "name": "_pages_v_version_netzwerk_hero_version_netzwerk_hero_ima_idx", + "columns": [ + "version_netzwerk_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_netzwerk_sponsoring_version_netzwerk_sp_idx": { + "name": "_pages_v_version_netzwerk_sponsoring_version_netzwerk_sp_idx", + "columns": [ + "version_netzwerk_sponsoring_image_id" + ], + "isUnique": false + }, + "_pages_v_version_mitglied_werden_hero_version_mitglied_w_idx": { + "name": "_pages_v_version_mitglied_werden_hero_version_mitglied_w_idx", + "columns": [ + "version_mitglied_werden_hero_image_id" + ], + "isUnique": false + }, + "_pages_v_version_mitglied_werden_form_intro_version_mitg_idx": { + "name": "_pages_v_version_mitglied_werden_form_intro_version_mitg_idx", + "columns": [ + "version_mitglied_werden_form_intro_image_id" + ], + "isUnique": false + }, + "_pages_v_version_meta_version_meta_image_idx": { + "name": "_pages_v_version_meta_version_meta_image_idx", + "columns": [ + "version_meta_image_id" + ], + "isUnique": false + }, + "_pages_v_version_version_spa_path_idx": { + "name": "_pages_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_pages_v_version_version_slug_idx": { + "name": "_pages_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_pages_v_version_version_updated_at_idx": { + "name": "_pages_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_pages_v_version_version_created_at_idx": { + "name": "_pages_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_pages_v_version_version__status_idx": { + "name": "_pages_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_pages_v_created_at_idx": { + "name": "_pages_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_pages_v_updated_at_idx": { + "name": "_pages_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_pages_v_latest_idx": { + "name": "_pages_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_pages_v_autosave_idx": { + "name": "_pages_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_parent_id_pages_id_fk": { + "name": "_pages_v_parent_id_pages_id_fk", + "tableFrom": "_pages_v", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_hero_media_id_media_id_fk": { + "name": "_pages_v_version_hero_media_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_hero_media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_home_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_quick_check_image_id_media_id_fk": { + "name": "_pages_v_version_home_quick_check_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_quick_check_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_intro_image_id_media_id_fk": { + "name": "_pages_v_version_home_intro_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_winners_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_home_winners_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_winners_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_benefits_image_id_media_id_fk": { + "name": "_pages_v_version_home_benefits_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_benefits_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_application_award_image_id_media_id_fk": { + "name": "_pages_v_version_home_application_award_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_application_award_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_home_video_modal_video_id_media_id_fk": { + "name": "_pages_v_version_home_video_modal_video_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_home_video_modal_video_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_contact_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_contact_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_contact_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_contact_info_form_image_id_media_id_fk": { + "name": "_pages_v_version_contact_info_form_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_contact_info_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_participation_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_participation_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_participation_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_participation_application_form_image_id_media_id_fk": { + "name": "_pages_v_version_participation_application_form_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_participation_application_form_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_hero_background_image_id_media_id_fk": { + "name": "_pages_v_version_about_hero_background_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_hero_background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_prize_image_id_media_id_fk": { + "name": "_pages_v_version_about_prize_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_prize_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_mittelstand_image_id_media_id_fk": { + "name": "_pages_v_version_about_mittelstand_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_mittelstand_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_about_highlights_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_about_highlights_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_about_highlights_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_preistraeger_index_hero_image_id_media_id_fk": { + "name": "_pages_v_version_preistraeger_index_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_preistraeger_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_preistraeger_index_card_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_preistraeger_index_card_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_preistraeger_index_card_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_hero_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_events_collection_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_events_collection_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_events_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_news_collection_fallback_image_id_media_id_fk": { + "name": "_pages_v_version_press_index_news_collection_fallback_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_news_collection_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_press_index_downloads_kit_file_id_media_id_fk": { + "name": "_pages_v_version_press_index_downloads_kit_file_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_press_index_downloads_kit_file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_netzwerk_hero_image_id_media_id_fk": { + "name": "_pages_v_version_netzwerk_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_netzwerk_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_netzwerk_sponsoring_image_id_media_id_fk": { + "name": "_pages_v_version_netzwerk_sponsoring_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_netzwerk_sponsoring_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_mitglied_werden_hero_image_id_media_id_fk": { + "name": "_pages_v_version_mitglied_werden_hero_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_mitglied_werden_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_mitglied_werden_form_intro_image_id_media_id_fk": { + "name": "_pages_v_version_mitglied_werden_form_intro_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_mitglied_werden_form_intro_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_version_meta_image_id_media_id_fk": { + "name": "_pages_v_version_meta_image_id_media_id_fk", + "tableFrom": "_pages_v", + "tableTo": "media", + "columnsFrom": [ + "version_meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_pages_v_rels": { + "name": "_pages_v_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_pages_v_rels_order_idx": { + "name": "_pages_v_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "_pages_v_rels_parent_idx": { + "name": "_pages_v_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_pages_v_rels_path_idx": { + "name": "_pages_v_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "_pages_v_rels_pages_id_idx": { + "name": "_pages_v_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "_pages_v_rels_posts_id_idx": { + "name": "_pages_v_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "_pages_v_rels_preistraeger_id_idx": { + "name": "_pages_v_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_pages_v_rels_parent_fk": { + "name": "_pages_v_rels_parent_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "_pages_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_pages_fk": { + "name": "_pages_v_rels_pages_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_posts_fk": { + "name": "_pages_v_rels_posts_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_preistraeger_fk": { + "name": "_pages_v_rels_preistraeger_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "preistraeger": { + "name": "preistraeger", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category": { + "name": "category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "year": { + "name": "year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "award_type": { + "name": "award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "short_desc": { + "name": "short_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "long_desc": { + "name": "long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote": { + "name": "quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote_person": { + "name": "quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "quote_role": { + "name": "quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "has_media": { + "name": "has_media", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_breadcrumb_url": { + "name": "detail_page_breadcrumb_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "detail_page_breadcrumb_label": { + "name": "detail_page_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "detail_page_fallback_winner_name": { + "name": "detail_page_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_category": { + "name": "detail_page_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_award_type": { + "name": "detail_page_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "detail_page_fallback_winner_long_desc": { + "name": "detail_page_fallback_winner_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Preisträger wird aus Payload CMS geladen.'" + }, + "detail_page_fallback_winner_quote": { + "name": "detail_page_fallback_winner_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Erfolgsgeschichte wird aktuell in Payload CMS gepflegt.'" + }, + "detail_page_fallback_winner_quote_person": { + "name": "detail_page_fallback_winner_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP'" + }, + "detail_page_fallback_winner_quote_role": { + "name": "detail_page_fallback_winner_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "detail_page_fallback_winner_location": { + "name": "detail_page_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "detail_page_fallback_winner_industry": { + "name": "detail_page_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "detail_page_sections_company_heading": { + "name": "detail_page_sections_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "detail_page_sections_jury_heading": { + "name": "detail_page_sections_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Warum ausgezeichnet?'" + }, + "detail_page_sections_jury_text_before_name": { + "name": "detail_page_sections_jury_text_before_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises überzeugte'" + }, + "detail_page_sections_jury_text_after_name_before_category": { + "name": "detail_page_sections_jury_text_after_name_before_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'durch außergewöhnliche Leistungen im Bereich'" + }, + "detail_page_sections_jury_text_after_category": { + "name": "detail_page_sections_jury_text_after_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Unternehmen steht exemplarisch für die Stärken des bayerischen Mittelstands: unternehmerischen Mut, wertebasierte Führung und nachhaltige Wirkung weit über den eigenen Betrieb hinaus.'" + }, + "detail_page_side_image_image_id": { + "name": "detail_page_side_image_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_side_image_image_alt": { + "name": "detail_page_side_image_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala Preisverleihung'" + }, + "detail_page_facts_heading": { + "name": "detail_page_facts_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auf einen Blick'" + }, + "detail_page_facts_category_label": { + "name": "detail_page_facts_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kategorie'" + }, + "detail_page_facts_award_label": { + "name": "detail_page_facts_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "detail_page_facts_year_label": { + "name": "detail_page_facts_year_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahr'" + }, + "detail_page_facts_location_label": { + "name": "detail_page_facts_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "detail_page_facts_industry_label": { + "name": "detail_page_facts_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "detail_page_website_cta_label": { + "name": "detail_page_website_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen ↗'" + }, + "detail_page_back_link_url": { + "name": "detail_page_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "detail_page_back_link_label": { + "name": "detail_page_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "preistraeger_image_idx": { + "name": "preistraeger_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + }, + "preistraeger_detail_page_detail_page_fallback_image_idx": { + "name": "preistraeger_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "preistraeger_detail_page_side_image_detail_page_side_ima_idx": { + "name": "preistraeger_detail_page_side_image_detail_page_side_ima_idx", + "columns": [ + "detail_page_side_image_image_id" + ], + "isUnique": false + }, + "preistraeger_spa_path_idx": { + "name": "preistraeger_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "preistraeger_slug_idx": { + "name": "preistraeger_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "preistraeger_updated_at_idx": { + "name": "preistraeger_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "preistraeger_created_at_idx": { + "name": "preistraeger_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "preistraeger__status_idx": { + "name": "preistraeger__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "preistraeger_image_id_media_id_fk": { + "name": "preistraeger_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "preistraeger_detail_page_fallback_image_id_media_id_fk": { + "name": "preistraeger_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "preistraeger_detail_page_side_image_image_id_media_id_fk": { + "name": "preistraeger_detail_page_side_image_image_id_media_id_fk", + "tableFrom": "preistraeger", + "tableTo": "media", + "columnsFrom": [ + "detail_page_side_image_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_preistraeger_v": { + "name": "_preistraeger_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_image_id": { + "name": "version_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_category": { + "name": "version_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_year": { + "name": "version_year", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_award_type": { + "name": "version_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_short_desc": { + "name": "version_short_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_long_desc": { + "name": "version_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_description": { + "name": "version_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote": { + "name": "version_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote_person": { + "name": "version_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_quote_role": { + "name": "version_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_industry": { + "name": "version_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_website": { + "name": "version_website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_has_media": { + "name": "version_has_media", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_breadcrumb_url": { + "name": "version_detail_page_breadcrumb_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_detail_page_breadcrumb_label": { + "name": "version_detail_page_breadcrumb_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger:innen'" + }, + "version_detail_page_fallback_winner_name": { + "name": "version_detail_page_fallback_winner_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_category": { + "name": "version_detail_page_fallback_winner_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_award_type": { + "name": "version_detail_page_fallback_winner_award_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_detail_page_fallback_winner_long_desc": { + "name": "version_detail_page_fallback_winner_long_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Preisträger wird aus Payload CMS geladen.'" + }, + "version_detail_page_fallback_winner_quote": { + "name": "version_detail_page_fallback_winner_quote", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Diese Erfolgsgeschichte wird aktuell in Payload CMS gepflegt.'" + }, + "version_detail_page_fallback_winner_quote_person": { + "name": "version_detail_page_fallback_winner_quote_person", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP'" + }, + "version_detail_page_fallback_winner_quote_role": { + "name": "version_detail_page_fallback_winner_quote_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "version_detail_page_fallback_winner_location": { + "name": "version_detail_page_fallback_winner_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_detail_page_fallback_winner_industry": { + "name": "version_detail_page_fallback_winner_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mittelstand'" + }, + "version_detail_page_sections_company_heading": { + "name": "version_detail_page_sections_company_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über das Unternehmen'" + }, + "version_detail_page_sections_jury_heading": { + "name": "version_detail_page_sections_jury_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Warum ausgezeichnet?'" + }, + "version_detail_page_sections_jury_text_before_name": { + "name": "version_detail_page_sections_jury_text_before_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Die Jury des Bayerischen Mittelstandspreises überzeugte'" + }, + "version_detail_page_sections_jury_text_after_name_before_category": { + "name": "version_detail_page_sections_jury_text_after_name_before_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'durch außergewöhnliche Leistungen im Bereich'" + }, + "version_detail_page_sections_jury_text_after_category": { + "name": "version_detail_page_sections_jury_text_after_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Das Unternehmen steht exemplarisch für die Stärken des bayerischen Mittelstands: unternehmerischen Mut, wertebasierte Führung und nachhaltige Wirkung weit über den eigenen Betrieb hinaus.'" + }, + "version_detail_page_side_image_image_id": { + "name": "version_detail_page_side_image_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_side_image_image_alt": { + "name": "version_detail_page_side_image_image_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Gala Preisverleihung'" + }, + "version_detail_page_facts_heading": { + "name": "version_detail_page_facts_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auf einen Blick'" + }, + "version_detail_page_facts_category_label": { + "name": "version_detail_page_facts_category_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kategorie'" + }, + "version_detail_page_facts_award_label": { + "name": "version_detail_page_facts_award_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Auszeichnung'" + }, + "version_detail_page_facts_year_label": { + "name": "version_detail_page_facts_year_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jahr'" + }, + "version_detail_page_facts_location_label": { + "name": "version_detail_page_facts_location_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Standort'" + }, + "version_detail_page_facts_industry_label": { + "name": "version_detail_page_facts_industry_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Branche'" + }, + "version_detail_page_website_cta_label": { + "name": "version_detail_page_website_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Website besuchen ↗'" + }, + "version_detail_page_back_link_url": { + "name": "version_detail_page_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/preistraeger'" + }, + "version_detail_page_back_link_label": { + "name": "version_detail_page_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Preisträger'" + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_preistraeger_v_parent_idx": { + "name": "_preistraeger_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_image_idx": { + "name": "_preistraeger_v_version_version_image_idx", + "columns": [ + "version_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_detail_page_version_detail_page__idx": { + "name": "_preistraeger_v_version_detail_page_version_detail_page__idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_detail_page_side_image_version_d_idx": { + "name": "_preistraeger_v_version_detail_page_side_image_version_d_idx", + "columns": [ + "version_detail_page_side_image_image_id" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_spa_path_idx": { + "name": "_preistraeger_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_slug_idx": { + "name": "_preistraeger_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_updated_at_idx": { + "name": "_preistraeger_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_preistraeger_v_version_version_created_at_idx": { + "name": "_preistraeger_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_preistraeger_v_version_version__status_idx": { + "name": "_preistraeger_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_preistraeger_v_created_at_idx": { + "name": "_preistraeger_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_preistraeger_v_updated_at_idx": { + "name": "_preistraeger_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_preistraeger_v_latest_idx": { + "name": "_preistraeger_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_preistraeger_v_autosave_idx": { + "name": "_preistraeger_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_preistraeger_v_parent_id_preistraeger_id_fk": { + "name": "_preistraeger_v_parent_id_preistraeger_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "preistraeger", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_image_id_media_id_fk": { + "name": "_preistraeger_v_version_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_preistraeger_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_preistraeger_v_version_detail_page_side_image_image_id_media_id_fk": { + "name": "_preistraeger_v_version_detail_page_side_image_image_id_media_id_fk", + "tableFrom": "_preistraeger_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_side_image_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "partners": { + "name": "partners", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "stable_id": { + "name": "stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tier": { + "name": "tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 3 + }, + "sort_order": { + "name": "sort_order", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 100 + }, + "active": { + "name": "active", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "show_on_homepage": { + "name": "show_on_homepage", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_kind": { + "name": "logo_kind", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'text'" + }, + "logo_text": { + "name": "logo_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_subtext": { + "name": "logo_subtext", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_color": { + "name": "logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "desc": { + "name": "desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "full_desc": { + "name": "full_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "industry": { + "name": "industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "linkedin": { + "name": "linkedin", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_img": { + "name": "hero_img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "partners_stable_id_idx": { + "name": "partners_stable_id_idx", + "columns": [ + "stable_id" + ], + "isUnique": true + }, + "partners_logo_idx": { + "name": "partners_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + }, + "partners_updated_at_idx": { + "name": "partners_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "partners_created_at_idx": { + "name": "partners_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "partners__status_idx": { + "name": "partners__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "partners_logo_id_media_id_fk": { + "name": "partners_logo_id_media_id_fk", + "tableFrom": "partners", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_partners_v": { + "name": "_partners_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_name": { + "name": "version_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_stable_id": { + "name": "version_stable_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_role": { + "name": "version_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_tier": { + "name": "version_tier", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 3 + }, + "version_sort_order": { + "name": "version_sort_order", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 100 + }, + "version_active": { + "name": "version_active", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_show_on_homepage": { + "name": "version_show_on_homepage", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_logo_id": { + "name": "version_logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_alt": { + "name": "version_logo_alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_kind": { + "name": "version_logo_kind", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'text'" + }, + "version_logo_text": { + "name": "version_logo_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_subtext": { + "name": "version_logo_subtext", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_logo_color": { + "name": "version_logo_color", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_desc": { + "name": "version_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_full_desc": { + "name": "version_full_desc", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_industry": { + "name": "version_industry", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_website": { + "name": "version_website", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_linkedin": { + "name": "version_linkedin", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_img": { + "name": "version_hero_img", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_partners_v_parent_idx": { + "name": "_partners_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_partners_v_version_version_stable_id_idx": { + "name": "_partners_v_version_version_stable_id_idx", + "columns": [ + "version_stable_id" + ], + "isUnique": false + }, + "_partners_v_version_version_logo_idx": { + "name": "_partners_v_version_version_logo_idx", + "columns": [ + "version_logo_id" + ], + "isUnique": false + }, + "_partners_v_version_version_updated_at_idx": { + "name": "_partners_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_partners_v_version_version_created_at_idx": { + "name": "_partners_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_partners_v_version_version__status_idx": { + "name": "_partners_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_partners_v_created_at_idx": { + "name": "_partners_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_partners_v_updated_at_idx": { + "name": "_partners_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_partners_v_latest_idx": { + "name": "_partners_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_partners_v_autosave_idx": { + "name": "_partners_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_partners_v_parent_id_partners_id_fk": { + "name": "_partners_v_parent_id_partners_id_fk", + "tableFrom": "_partners_v", + "tableTo": "partners", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_partners_v_version_logo_id_media_id_fk": { + "name": "_partners_v_version_logo_id_media_id_fk", + "tableFrom": "_partners_v", + "tableTo": "media", + "columnsFrom": [ + "version_logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_sections": { + "name": "posts_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "heading": { + "name": "heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_sections_order_idx": { + "name": "posts_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_sections_parent_id_idx": { + "name": "posts_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_sections_parent_id_fk": { + "name": "posts_sections_parent_id_fk", + "tableFrom": "posts_sections", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_tags": { + "name": "posts_tags", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_tags_order_idx": { + "name": "posts_tags_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_tags_parent_id_idx": { + "name": "posts_tags_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_tags_parent_id_fk": { + "name": "posts_tags_parent_id_fk", + "tableFrom": "posts_tags", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_related_slugs": { + "name": "posts_related_slugs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_related_slugs_order_idx": { + "name": "posts_related_slugs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_related_slugs_parent_id_idx": { + "name": "posts_related_slugs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_related_slugs_parent_id_fk": { + "name": "posts_related_slugs_parent_id_fk", + "tableFrom": "posts_related_slugs", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_populated_authors": { + "name": "posts_populated_authors", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_populated_authors_order_idx": { + "name": "posts_populated_authors_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "posts_populated_authors_parent_id_idx": { + "name": "posts_populated_authors_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_populated_authors_parent_id_fk": { + "name": "posts_populated_authors_parent_id_fk", + "tableFrom": "posts_populated_authors", + "tableTo": "posts", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts": { + "name": "posts", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hero_image_id": { + "name": "hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "excerpt": { + "name": "excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cat": { + "name": "cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "author_name": { + "name": "author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "author_role": { + "name": "author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "read_time": { + "name": "read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_not_found_title": { + "name": "detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel nicht gefunden'" + }, + "detail_page_not_found_back_label": { + "name": "detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse'" + }, + "detail_page_not_found_back_url": { + "name": "detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_hero_back_link_label": { + "name": "detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "detail_page_hero_back_link_url": { + "name": "detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_fallback_article_title": { + "name": "detail_page_fallback_article_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_category": { + "name": "detail_page_fallback_article_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_date": { + "name": "detail_page_fallback_article_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aktuell'" + }, + "detail_page_fallback_article_author_name": { + "name": "detail_page_fallback_article_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Redaktion'" + }, + "detail_page_fallback_article_author_role": { + "name": "detail_page_fallback_article_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_fallback_article_read_time": { + "name": "detail_page_fallback_article_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'1 min'" + }, + "detail_page_fallback_article_excerpt": { + "name": "detail_page_fallback_article_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Pressebeitrag wird aus Payload CMS geladen.'" + }, + "detail_page_fallback_article_tag": { + "name": "detail_page_fallback_article_tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "detail_page_category_colors": { + "name": "detail_page_category_colors", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"Auszeichnung\":\"#111D55\",\"Innovation\":\"#2563EB\",\"Engagement\":\"#16A34A\",\"Wirtschaft\":\"#9333EA\"}'" + }, + "detail_page_meta_copy_read_time_suffix": { + "name": "detail_page_meta_copy_read_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Lesezeit'" + }, + "detail_page_sidebar_cta_heading": { + "name": "detail_page_sidebar_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "detail_page_sidebar_cta_text": { + "name": "detail_page_sidebar_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?'" + }, + "detail_page_sidebar_cta_label": { + "name": "detail_page_sidebar_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Bewerbung'" + }, + "detail_page_sidebar_cta_url": { + "name": "detail_page_sidebar_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "detail_page_related_heading": { + "name": "detail_page_related_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Artikel'" + }, + "detail_page_related_read_more_label": { + "name": "detail_page_related_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "content": { + "name": "content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_image_id": { + "name": "meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "posts_hero_image_idx": { + "name": "posts_hero_image_idx", + "columns": [ + "hero_image_id" + ], + "isUnique": false + }, + "posts_detail_page_detail_page_fallback_image_idx": { + "name": "posts_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "posts_meta_meta_image_idx": { + "name": "posts_meta_meta_image_idx", + "columns": [ + "meta_image_id" + ], + "isUnique": false + }, + "posts_spa_path_idx": { + "name": "posts_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "posts_slug_idx": { + "name": "posts_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "posts_updated_at_idx": { + "name": "posts_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "posts_created_at_idx": { + "name": "posts_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "posts__status_idx": { + "name": "posts__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_hero_image_id_media_id_fk": { + "name": "posts_hero_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "posts_detail_page_fallback_image_id_media_id_fk": { + "name": "posts_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "posts_meta_image_id_media_id_fk": { + "name": "posts_meta_image_id_media_id_fk", + "tableFrom": "posts", + "tableTo": "media", + "columnsFrom": [ + "meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "posts_rels": { + "name": "posts_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "posts_rels_order_idx": { + "name": "posts_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "posts_rels_parent_idx": { + "name": "posts_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "posts_rels_path_idx": { + "name": "posts_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "posts_rels_posts_id_idx": { + "name": "posts_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "posts_rels_users_id_idx": { + "name": "posts_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "posts_rels_parent_fk": { + "name": "posts_rels_parent_fk", + "tableFrom": "posts_rels", + "tableTo": "posts", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_posts_fk": { + "name": "posts_rels_posts_fk", + "tableFrom": "posts_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "posts_rels_users_fk": { + "name": "posts_rels_users_fk", + "tableFrom": "posts_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_sections": { + "name": "_posts_v_version_sections", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "heading": { + "name": "heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_sections_order_idx": { + "name": "_posts_v_version_sections_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_sections_parent_id_idx": { + "name": "_posts_v_version_sections_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_sections_parent_id_fk": { + "name": "_posts_v_version_sections_parent_id_fk", + "tableFrom": "_posts_v_version_sections", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_tags": { + "name": "_posts_v_version_tags", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_tags_order_idx": { + "name": "_posts_v_version_tags_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_tags_parent_id_idx": { + "name": "_posts_v_version_tags_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_tags_parent_id_fk": { + "name": "_posts_v_version_tags_parent_id_fk", + "tableFrom": "_posts_v_version_tags", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_related_slugs": { + "name": "_posts_v_version_related_slugs", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_related_slugs_order_idx": { + "name": "_posts_v_version_related_slugs_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_related_slugs_parent_id_idx": { + "name": "_posts_v_version_related_slugs_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_related_slugs_parent_id_fk": { + "name": "_posts_v_version_related_slugs_parent_id_fk", + "tableFrom": "_posts_v_version_related_slugs", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_version_populated_authors": { + "name": "_posts_v_version_populated_authors", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_version_populated_authors_order_idx": { + "name": "_posts_v_version_populated_authors_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_posts_v_version_populated_authors_parent_id_idx": { + "name": "_posts_v_version_populated_authors_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_version_populated_authors_parent_id_fk": { + "name": "_posts_v_version_populated_authors_parent_id_fk", + "tableFrom": "_posts_v_version_populated_authors", + "tableTo": "_posts_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v": { + "name": "_posts_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_hero_image_id": { + "name": "version_hero_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_excerpt": { + "name": "version_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_cat": { + "name": "version_cat", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_date": { + "name": "version_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_author_name": { + "name": "version_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_author_role": { + "name": "version_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_read_time": { + "name": "version_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_not_found_title": { + "name": "version_detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Artikel nicht gefunden'" + }, + "version_detail_page_not_found_back_label": { + "name": "version_detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse'" + }, + "version_detail_page_not_found_back_url": { + "name": "version_detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_hero_back_link_label": { + "name": "version_detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Newsroom'" + }, + "version_detail_page_hero_back_link_url": { + "name": "version_detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_fallback_article_title": { + "name": "version_detail_page_fallback_article_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_category": { + "name": "version_detail_page_fallback_article_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_date": { + "name": "version_detail_page_fallback_article_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Aktuell'" + }, + "version_detail_page_fallback_article_author_name": { + "name": "version_detail_page_fallback_article_author_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'BMP Redaktion'" + }, + "version_detail_page_fallback_article_author_role": { + "name": "version_detail_page_fallback_article_author_role", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_fallback_article_read_time": { + "name": "version_detail_page_fallback_article_read_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'1 min'" + }, + "version_detail_page_fallback_article_excerpt": { + "name": "version_detail_page_fallback_article_excerpt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieser Pressebeitrag wird aus Payload CMS geladen.'" + }, + "version_detail_page_fallback_article_tag": { + "name": "version_detail_page_fallback_article_tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Presse'" + }, + "version_detail_page_category_colors": { + "name": "version_detail_page_category_colors", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"Auszeichnung\":\"#111D55\",\"Innovation\":\"#2563EB\",\"Engagement\":\"#16A34A\",\"Wirtschaft\":\"#9333EA\"}'" + }, + "version_detail_page_meta_copy_read_time_suffix": { + "name": "version_detail_page_meta_copy_read_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Lesezeit'" + }, + "version_detail_page_sidebar_cta_heading": { + "name": "version_detail_page_sidebar_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt bewerben'" + }, + "version_detail_page_sidebar_cta_text": { + "name": "version_detail_page_sidebar_cta_text", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?'" + }, + "version_detail_page_sidebar_cta_label": { + "name": "version_detail_page_sidebar_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zur Bewerbung'" + }, + "version_detail_page_sidebar_cta_url": { + "name": "version_detail_page_sidebar_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_detail_page_related_heading": { + "name": "version_detail_page_related_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Artikel'" + }, + "version_detail_page_related_read_more_label": { + "name": "version_detail_page_related_read_more_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weiterlesen'" + }, + "version_content": { + "name": "version_content", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_image_id": { + "name": "version_meta_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_parent_idx": { + "name": "_posts_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_posts_v_version_version_hero_image_idx": { + "name": "_posts_v_version_version_hero_image_idx", + "columns": [ + "version_hero_image_id" + ], + "isUnique": false + }, + "_posts_v_version_detail_page_version_detail_page_fallbac_idx": { + "name": "_posts_v_version_detail_page_version_detail_page_fallbac_idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_posts_v_version_meta_version_meta_image_idx": { + "name": "_posts_v_version_meta_version_meta_image_idx", + "columns": [ + "version_meta_image_id" + ], + "isUnique": false + }, + "_posts_v_version_version_spa_path_idx": { + "name": "_posts_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_posts_v_version_version_slug_idx": { + "name": "_posts_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_posts_v_version_version_updated_at_idx": { + "name": "_posts_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_posts_v_version_version_created_at_idx": { + "name": "_posts_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_posts_v_version_version__status_idx": { + "name": "_posts_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_posts_v_created_at_idx": { + "name": "_posts_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_posts_v_updated_at_idx": { + "name": "_posts_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_posts_v_latest_idx": { + "name": "_posts_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_posts_v_autosave_idx": { + "name": "_posts_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_parent_id_posts_id_fk": { + "name": "_posts_v_parent_id_posts_id_fk", + "tableFrom": "_posts_v", + "tableTo": "posts", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_hero_image_id_media_id_fk": { + "name": "_posts_v_version_hero_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_hero_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_posts_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_posts_v_version_meta_image_id_media_id_fk": { + "name": "_posts_v_version_meta_image_id_media_id_fk", + "tableFrom": "_posts_v", + "tableTo": "media", + "columnsFrom": [ + "version_meta_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_posts_v_rels": { + "name": "_posts_v_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_posts_v_rels_order_idx": { + "name": "_posts_v_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "_posts_v_rels_parent_idx": { + "name": "_posts_v_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_posts_v_rels_path_idx": { + "name": "_posts_v_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "_posts_v_rels_posts_id_idx": { + "name": "_posts_v_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "_posts_v_rels_users_id_idx": { + "name": "_posts_v_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_posts_v_rels_parent_fk": { + "name": "_posts_v_rels_parent_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "_posts_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_posts_fk": { + "name": "_posts_v_rels_posts_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_posts_v_rels_users_fk": { + "name": "_posts_v_rels_users_fk", + "tableFrom": "_posts_v_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events_eckdaten": { + "name": "events_eckdaten", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "events_eckdaten_order_idx": { + "name": "events_eckdaten_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "events_eckdaten_parent_id_idx": { + "name": "events_eckdaten_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_eckdaten_parent_id_fk": { + "name": "events_eckdaten_parent_id_fk", + "tableFrom": "events_eckdaten", + "tableTo": "events", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events_updates": { + "name": "events_updates", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "timestamp": { + "name": "timestamp", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "events_updates_order_idx": { + "name": "events_updates_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "events_updates_parent_id_idx": { + "name": "events_updates_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_updates_parent_id_fk": { + "name": "events_updates_parent_id_fk", + "tableFrom": "events_updates", + "tableTo": "events", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "events": { + "name": "events", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "subtitle": { + "name": "subtitle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "long_description": { + "name": "long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "date": { + "name": "date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "time": { + "name": "time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "venue": { + "name": "venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "category": { + "name": "category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "detail_page_fallback_image_id": { + "name": "detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "detail_page_not_found_title": { + "name": "detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event nicht gefunden'" + }, + "detail_page_not_found_back_label": { + "name": "detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse-Seite'" + }, + "detail_page_not_found_back_url": { + "name": "detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_date_format_month_names": { + "name": "detail_page_date_format_month_names", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"]'" + }, + "detail_page_date_format_time_suffix": { + "name": "detail_page_date_format_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhr'" + }, + "detail_page_update_styles": { + "name": "detail_page_update_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"ankündigung\":{\"bg\":\"#EBF4FF\",\"color\":\"#1D4ED8\",\"label\":\"Ankündigung\"},\"erinnerung\":{\"bg\":\"#FFFBEB\",\"color\":\"#B45309\",\"label\":\"Erinnerung\"},\"update\":{\"bg\":\"#F3F4F6\",\"color\":\"#374151\",\"label\":\"Update\"},\"highlight\":{\"bg\":\"#111D5512\",\"color\":\"#111D55\",\"label\":\"Highlight\"},\"ergebnis\":{\"bg\":\"#ECFDF5\",\"color\":\"#065F46\",\"label\":\"Ergebnis\"},\"wichtig\":{\"bg\":\"#FEF2F2\",\"color\":\"#991B1B\",\"label\":\"Wichtig\"}}'" + }, + "detail_page_status_styles": { + "name": "detail_page_status_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"geplant\":{\"label\":\"In Planung\",\"bg\":\"#111D5518\",\"color\":\"#111D55\"},\"anmeldung-offen\":{\"label\":\"Anmeldung offen\",\"bg\":\"#ECFDF5\",\"color\":\"#065F46\"},\"intern\":{\"label\":\"Intern\",\"bg\":\"#FEF9C3\",\"color\":\"#713F12\"},\"abgeschlossen\":{\"label\":\"Abgeschlossen\",\"bg\":\"#F3F4F6\",\"color\":\"#6B7280\"}}'" + }, + "detail_page_hero_back_link_label": { + "name": "detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "detail_page_hero_back_link_url": { + "name": "detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "detail_page_fallback_event_title": { + "name": "detail_page_fallback_event_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "detail_page_fallback_event_date": { + "name": "detail_page_fallback_event_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "detail_page_fallback_event_time": { + "name": "detail_page_fallback_event_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhrzeit folgt'" + }, + "detail_page_fallback_event_location": { + "name": "detail_page_fallback_event_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "detail_page_fallback_event_venue": { + "name": "detail_page_fallback_event_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ort folgt'" + }, + "detail_page_fallback_event_category": { + "name": "detail_page_fallback_event_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "detail_page_fallback_event_status": { + "name": "detail_page_fallback_event_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "detail_page_fallback_event_long_description": { + "name": "detail_page_fallback_event_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieses Event wird aus Payload CMS geladen.'" + }, + "detail_page_sections_about_eyebrow": { + "name": "detail_page_sections_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über die Veranstaltung'" + }, + "detail_page_sections_facts_eyebrow": { + "name": "detail_page_sections_facts_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eckdaten'" + }, + "detail_page_sections_register_label": { + "name": "detail_page_sections_register_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt anmelden'" + }, + "detail_page_sections_register_url": { + "name": "detail_page_sections_register_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "detail_page_sections_question_label": { + "name": "detail_page_sections_question_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Frage stellen'" + }, + "detail_page_sections_question_url": { + "name": "detail_page_sections_question_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "detail_page_updates_copy_heading": { + "name": "detail_page_updates_copy_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Live Updates'" + }, + "detail_page_updates_copy_subscribe_label": { + "name": "detail_page_updates_copy_subscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abonnieren'" + }, + "detail_page_updates_copy_unsubscribe_label": { + "name": "detail_page_updates_copy_unsubscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abgemeldet'" + }, + "detail_page_updates_copy_subscribed_message": { + "name": "detail_page_updates_copy_subscribed_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓ Sie erhalten Benachrichtigungen für dieses Event.'" + }, + "detail_page_bottom_cta_eyebrow": { + "name": "detail_page_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr entdecken'" + }, + "detail_page_bottom_cta_heading": { + "name": "detail_page_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Veranstaltungen'" + }, + "detail_page_bottom_cta_label": { + "name": "detail_page_bottom_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "detail_page_bottom_cta_url": { + "name": "detail_page_bottom_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "spa_path": { + "name": "spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "published_at": { + "name": "published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_title": { + "name": "meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta_description": { + "name": "meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generate_slug": { + "name": "generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "_status": { + "name": "_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + } + }, + "indexes": { + "events_image_idx": { + "name": "events_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + }, + "events_detail_page_detail_page_fallback_image_idx": { + "name": "events_detail_page_detail_page_fallback_image_idx", + "columns": [ + "detail_page_fallback_image_id" + ], + "isUnique": false + }, + "events_spa_path_idx": { + "name": "events_spa_path_idx", + "columns": [ + "spa_path" + ], + "isUnique": false + }, + "events_slug_idx": { + "name": "events_slug_idx", + "columns": [ + "slug" + ], + "isUnique": true + }, + "events_updated_at_idx": { + "name": "events_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "events_created_at_idx": { + "name": "events_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "events__status_idx": { + "name": "events__status_idx", + "columns": [ + "_status" + ], + "isUnique": false + } + }, + "foreignKeys": { + "events_image_id_media_id_fk": { + "name": "events_image_id_media_id_fk", + "tableFrom": "events", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_detail_page_fallback_image_id_media_id_fk": { + "name": "events_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "events", + "tableTo": "media", + "columnsFrom": [ + "detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v_version_eckdaten": { + "name": "_events_v_version_eckdaten", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_version_eckdaten_order_idx": { + "name": "_events_v_version_eckdaten_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_events_v_version_eckdaten_parent_id_idx": { + "name": "_events_v_version_eckdaten_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_version_eckdaten_parent_id_fk": { + "name": "_events_v_version_eckdaten_parent_id_fk", + "tableFrom": "_events_v_version_eckdaten", + "tableTo": "_events_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v_version_updates": { + "name": "_events_v_version_updates", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "timestamp": { + "name": "timestamp", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "_uuid": { + "name": "_uuid", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_version_updates_order_idx": { + "name": "_events_v_version_updates_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "_events_v_version_updates_parent_id_idx": { + "name": "_events_v_version_updates_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_version_updates_parent_id_fk": { + "name": "_events_v_version_updates_parent_id_fk", + "tableFrom": "_events_v_version_updates", + "tableTo": "_events_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "_events_v": { + "name": "_events_v", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_title": { + "name": "version_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_subtitle": { + "name": "version_subtitle", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_image_id": { + "name": "version_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_description": { + "name": "version_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_long_description": { + "name": "version_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_date": { + "name": "version_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_time": { + "name": "version_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_location": { + "name": "version_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_venue": { + "name": "version_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_category": { + "name": "version_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_status": { + "name": "version_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "version_detail_page_fallback_image_id": { + "name": "version_detail_page_fallback_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_detail_page_not_found_title": { + "name": "version_detail_page_not_found_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event nicht gefunden'" + }, + "version_detail_page_not_found_back_label": { + "name": "version_detail_page_not_found_back_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Zurück zur Presse-Seite'" + }, + "version_detail_page_not_found_back_url": { + "name": "version_detail_page_not_found_back_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_date_format_month_names": { + "name": "version_detail_page_date_format_month_names", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"]'" + }, + "version_detail_page_date_format_time_suffix": { + "name": "version_detail_page_date_format_time_suffix", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhr'" + }, + "version_detail_page_update_styles": { + "name": "version_detail_page_update_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"ankündigung\":{\"bg\":\"#EBF4FF\",\"color\":\"#1D4ED8\",\"label\":\"Ankündigung\"},\"erinnerung\":{\"bg\":\"#FFFBEB\",\"color\":\"#B45309\",\"label\":\"Erinnerung\"},\"update\":{\"bg\":\"#F3F4F6\",\"color\":\"#374151\",\"label\":\"Update\"},\"highlight\":{\"bg\":\"#111D5512\",\"color\":\"#111D55\",\"label\":\"Highlight\"},\"ergebnis\":{\"bg\":\"#ECFDF5\",\"color\":\"#065F46\",\"label\":\"Ergebnis\"},\"wichtig\":{\"bg\":\"#FEF2F2\",\"color\":\"#991B1B\",\"label\":\"Wichtig\"}}'" + }, + "version_detail_page_status_styles": { + "name": "version_detail_page_status_styles", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'{\"geplant\":{\"label\":\"In Planung\",\"bg\":\"#111D5518\",\"color\":\"#111D55\"},\"anmeldung-offen\":{\"label\":\"Anmeldung offen\",\"bg\":\"#ECFDF5\",\"color\":\"#065F46\"},\"intern\":{\"label\":\"Intern\",\"bg\":\"#FEF9C3\",\"color\":\"#713F12\"},\"abgeschlossen\":{\"label\":\"Abgeschlossen\",\"bg\":\"#F3F4F6\",\"color\":\"#6B7280\"}}'" + }, + "version_detail_page_hero_back_link_label": { + "name": "version_detail_page_hero_back_link_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "version_detail_page_hero_back_link_url": { + "name": "version_detail_page_hero_back_link_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_detail_page_fallback_event_title": { + "name": "version_detail_page_fallback_event_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_detail_page_fallback_event_date": { + "name": "version_detail_page_fallback_event_date", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Termin folgt'" + }, + "version_detail_page_fallback_event_time": { + "name": "version_detail_page_fallback_event_time", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Uhrzeit folgt'" + }, + "version_detail_page_fallback_event_location": { + "name": "version_detail_page_fallback_event_location", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bayern'" + }, + "version_detail_page_fallback_event_venue": { + "name": "version_detail_page_fallback_event_venue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Ort folgt'" + }, + "version_detail_page_fallback_event_category": { + "name": "version_detail_page_fallback_event_category", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Event'" + }, + "version_detail_page_fallback_event_status": { + "name": "version_detail_page_fallback_event_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'geplant'" + }, + "version_detail_page_fallback_event_long_description": { + "name": "version_detail_page_fallback_event_long_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Dieses Event wird aus Payload CMS geladen.'" + }, + "version_detail_page_sections_about_eyebrow": { + "name": "version_detail_page_sections_about_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Über die Veranstaltung'" + }, + "version_detail_page_sections_facts_eyebrow": { + "name": "version_detail_page_sections_facts_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Eckdaten'" + }, + "version_detail_page_sections_register_label": { + "name": "version_detail_page_sections_register_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Jetzt anmelden'" + }, + "version_detail_page_sections_register_url": { + "name": "version_detail_page_sections_register_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/teilnahme'" + }, + "version_detail_page_sections_question_label": { + "name": "version_detail_page_sections_question_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Frage stellen'" + }, + "version_detail_page_sections_question_url": { + "name": "version_detail_page_sections_question_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/kontakt'" + }, + "version_detail_page_updates_copy_heading": { + "name": "version_detail_page_updates_copy_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Live Updates'" + }, + "version_detail_page_updates_copy_subscribe_label": { + "name": "version_detail_page_updates_copy_subscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abonnieren'" + }, + "version_detail_page_updates_copy_unsubscribe_label": { + "name": "version_detail_page_updates_copy_unsubscribe_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Abgemeldet'" + }, + "version_detail_page_updates_copy_subscribed_message": { + "name": "version_detail_page_updates_copy_subscribed_message", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'✓ Sie erhalten Benachrichtigungen für dieses Event.'" + }, + "version_detail_page_bottom_cta_eyebrow": { + "name": "version_detail_page_bottom_cta_eyebrow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mehr entdecken'" + }, + "version_detail_page_bottom_cta_heading": { + "name": "version_detail_page_bottom_cta_heading", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Weitere Veranstaltungen'" + }, + "version_detail_page_bottom_cta_label": { + "name": "version_detail_page_bottom_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Alle Events'" + }, + "version_detail_page_bottom_cta_url": { + "name": "version_detail_page_bottom_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/presse'" + }, + "version_spa_path": { + "name": "version_spa_path", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_published_at": { + "name": "version_published_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_title": { + "name": "version_meta_title", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_meta_description": { + "name": "version_meta_description", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_generate_slug": { + "name": "version_generate_slug", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "version_slug": { + "name": "version_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "version__status": { + "name": "version__status", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "latest": { + "name": "latest", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "autosave": { + "name": "autosave", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "_events_v_parent_idx": { + "name": "_events_v_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "_events_v_version_version_image_idx": { + "name": "_events_v_version_version_image_idx", + "columns": [ + "version_image_id" + ], + "isUnique": false + }, + "_events_v_version_detail_page_version_detail_page_fallba_idx": { + "name": "_events_v_version_detail_page_version_detail_page_fallba_idx", + "columns": [ + "version_detail_page_fallback_image_id" + ], + "isUnique": false + }, + "_events_v_version_version_spa_path_idx": { + "name": "_events_v_version_version_spa_path_idx", + "columns": [ + "version_spa_path" + ], + "isUnique": false + }, + "_events_v_version_version_slug_idx": { + "name": "_events_v_version_version_slug_idx", + "columns": [ + "version_slug" + ], + "isUnique": false + }, + "_events_v_version_version_updated_at_idx": { + "name": "_events_v_version_version_updated_at_idx", + "columns": [ + "version_updated_at" + ], + "isUnique": false + }, + "_events_v_version_version_created_at_idx": { + "name": "_events_v_version_version_created_at_idx", + "columns": [ + "version_created_at" + ], + "isUnique": false + }, + "_events_v_version_version__status_idx": { + "name": "_events_v_version_version__status_idx", + "columns": [ + "version__status" + ], + "isUnique": false + }, + "_events_v_created_at_idx": { + "name": "_events_v_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "_events_v_updated_at_idx": { + "name": "_events_v_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "_events_v_latest_idx": { + "name": "_events_v_latest_idx", + "columns": [ + "latest" + ], + "isUnique": false + }, + "_events_v_autosave_idx": { + "name": "_events_v_autosave_idx", + "columns": [ + "autosave" + ], + "isUnique": false + } + }, + "foreignKeys": { + "_events_v_parent_id_events_id_fk": { + "name": "_events_v_parent_id_events_id_fk", + "tableFrom": "_events_v", + "tableTo": "events", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_events_v_version_image_id_media_id_fk": { + "name": "_events_v_version_image_id_media_id_fk", + "tableFrom": "_events_v", + "tableTo": "media", + "columnsFrom": [ + "version_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_events_v_version_detail_page_fallback_image_id_media_id_fk": { + "name": "_events_v_version_detail_page_fallback_image_id_media_id_fk", + "tableFrom": "_events_v", + "tableTo": "media", + "columnsFrom": [ + "version_detail_page_fallback_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "media": { + "name": "media", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "alt": { + "name": "alt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "caption": { + "name": "caption", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "folder_id": { + "name": "folder_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "url": { + "name": "url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "thumbnail_u_r_l": { + "name": "thumbnail_u_r_l", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "filename": { + "name": "filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "mime_type": { + "name": "mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "filesize": { + "name": "filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "height": { + "name": "height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "focal_x": { + "name": "focal_x", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "focal_y": { + "name": "focal_y", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_url": { + "name": "sizes_thumbnail_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_width": { + "name": "sizes_thumbnail_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_height": { + "name": "sizes_thumbnail_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_mime_type": { + "name": "sizes_thumbnail_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_filesize": { + "name": "sizes_thumbnail_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_thumbnail_filename": { + "name": "sizes_thumbnail_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_url": { + "name": "sizes_square_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_width": { + "name": "sizes_square_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_height": { + "name": "sizes_square_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_mime_type": { + "name": "sizes_square_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_filesize": { + "name": "sizes_square_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_square_filename": { + "name": "sizes_square_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_url": { + "name": "sizes_small_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_width": { + "name": "sizes_small_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_height": { + "name": "sizes_small_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_mime_type": { + "name": "sizes_small_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_filesize": { + "name": "sizes_small_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_small_filename": { + "name": "sizes_small_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_url": { + "name": "sizes_medium_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_width": { + "name": "sizes_medium_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_height": { + "name": "sizes_medium_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_mime_type": { + "name": "sizes_medium_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_filesize": { + "name": "sizes_medium_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_medium_filename": { + "name": "sizes_medium_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_url": { + "name": "sizes_large_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_width": { + "name": "sizes_large_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_height": { + "name": "sizes_large_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_mime_type": { + "name": "sizes_large_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_filesize": { + "name": "sizes_large_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_large_filename": { + "name": "sizes_large_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_url": { + "name": "sizes_xlarge_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_width": { + "name": "sizes_xlarge_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_height": { + "name": "sizes_xlarge_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_mime_type": { + "name": "sizes_xlarge_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_filesize": { + "name": "sizes_xlarge_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_xlarge_filename": { + "name": "sizes_xlarge_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_url": { + "name": "sizes_og_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_width": { + "name": "sizes_og_width", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_height": { + "name": "sizes_og_height", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_mime_type": { + "name": "sizes_og_mime_type", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_filesize": { + "name": "sizes_og_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "sizes_og_filename": { + "name": "sizes_og_filename", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "media_folder_idx": { + "name": "media_folder_idx", + "columns": [ + "folder_id" + ], + "isUnique": false + }, + "media_updated_at_idx": { + "name": "media_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "media_created_at_idx": { + "name": "media_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "media_filename_idx": { + "name": "media_filename_idx", + "columns": [ + "filename" + ], + "isUnique": true + }, + "media_sizes_thumbnail_sizes_thumbnail_filename_idx": { + "name": "media_sizes_thumbnail_sizes_thumbnail_filename_idx", + "columns": [ + "sizes_thumbnail_filename" + ], + "isUnique": false + }, + "media_sizes_square_sizes_square_filename_idx": { + "name": "media_sizes_square_sizes_square_filename_idx", + "columns": [ + "sizes_square_filename" + ], + "isUnique": false + }, + "media_sizes_small_sizes_small_filename_idx": { + "name": "media_sizes_small_sizes_small_filename_idx", + "columns": [ + "sizes_small_filename" + ], + "isUnique": false + }, + "media_sizes_medium_sizes_medium_filename_idx": { + "name": "media_sizes_medium_sizes_medium_filename_idx", + "columns": [ + "sizes_medium_filename" + ], + "isUnique": false + }, + "media_sizes_large_sizes_large_filename_idx": { + "name": "media_sizes_large_sizes_large_filename_idx", + "columns": [ + "sizes_large_filename" + ], + "isUnique": false + }, + "media_sizes_xlarge_sizes_xlarge_filename_idx": { + "name": "media_sizes_xlarge_sizes_xlarge_filename_idx", + "columns": [ + "sizes_xlarge_filename" + ], + "isUnique": false + }, + "media_sizes_og_sizes_og_filename_idx": { + "name": "media_sizes_og_sizes_og_filename_idx", + "columns": [ + "sizes_og_filename" + ], + "isUnique": false + } + }, + "foreignKeys": { + "media_folder_id_payload_folders_id_fk": { + "name": "media_folder_id_payload_folders_id_fk", + "tableFrom": "media", + "tableTo": "payload_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "users_sessions": { + "name": "users_sessions", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "expires_at": { + "name": "expires_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "users_sessions_order_idx": { + "name": "users_sessions_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "users_sessions_parent_id_idx": { + "name": "users_sessions_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "users_sessions_parent_id_fk": { + "name": "users_sessions_parent_id_fk", + "tableFrom": "users_sessions", + "tableTo": "users", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "users": { + "name": "users", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "reset_password_token": { + "name": "reset_password_token", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "reset_password_expiration": { + "name": "reset_password_expiration", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "salt": { + "name": "salt", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "hash": { + "name": "hash", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "login_attempts": { + "name": "login_attempts", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0 + }, + "lock_until": { + "name": "lock_until", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "users_updated_at_idx": { + "name": "users_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "users_created_at_idx": { + "name": "users_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + }, + "users_email_idx": { + "name": "users_email_idx", + "columns": [ + "email" + ], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_kv": { + "name": "payload_kv", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "data": { + "name": "data", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "payload_kv_key_idx": { + "name": "payload_kv_key_idx", + "columns": [ + "key" + ], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_jobs_log": { + "name": "payload_jobs_log", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "executed_at": { + "name": "executed_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "completed_at": { + "name": "completed_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "task_slug": { + "name": "task_slug", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "task_i_d": { + "name": "task_i_d", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "input": { + "name": "input", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "output": { + "name": "output", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "state": { + "name": "state", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_jobs_log_order_idx": { + "name": "payload_jobs_log_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "payload_jobs_log_parent_id_idx": { + "name": "payload_jobs_log_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_jobs_log_parent_id_fk": { + "name": "payload_jobs_log_parent_id_fk", + "tableFrom": "payload_jobs_log", + "tableTo": "payload_jobs", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_jobs": { + "name": "payload_jobs", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "input": { + "name": "input", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "completed_at": { + "name": "completed_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "total_tried": { + "name": "total_tried", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": 0 + }, + "has_error": { + "name": "has_error", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "task_slug": { + "name": "task_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "queue": { + "name": "queue", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'default'" + }, + "wait_until": { + "name": "wait_until", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "processing": { + "name": "processing", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_jobs_completed_at_idx": { + "name": "payload_jobs_completed_at_idx", + "columns": [ + "completed_at" + ], + "isUnique": false + }, + "payload_jobs_total_tried_idx": { + "name": "payload_jobs_total_tried_idx", + "columns": [ + "total_tried" + ], + "isUnique": false + }, + "payload_jobs_has_error_idx": { + "name": "payload_jobs_has_error_idx", + "columns": [ + "has_error" + ], + "isUnique": false + }, + "payload_jobs_task_slug_idx": { + "name": "payload_jobs_task_slug_idx", + "columns": [ + "task_slug" + ], + "isUnique": false + }, + "payload_jobs_queue_idx": { + "name": "payload_jobs_queue_idx", + "columns": [ + "queue" + ], + "isUnique": false + }, + "payload_jobs_wait_until_idx": { + "name": "payload_jobs_wait_until_idx", + "columns": [ + "wait_until" + ], + "isUnique": false + }, + "payload_jobs_processing_idx": { + "name": "payload_jobs_processing_idx", + "columns": [ + "processing" + ], + "isUnique": false + }, + "payload_jobs_updated_at_idx": { + "name": "payload_jobs_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_jobs_created_at_idx": { + "name": "payload_jobs_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_folders_folder_type": { + "name": "payload_folders_folder_type", + "columns": { + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "payload_folders_folder_type_order_idx": { + "name": "payload_folders_folder_type_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_folders_folder_type_parent_idx": { + "name": "payload_folders_folder_type_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_folders_folder_type_parent_fk": { + "name": "payload_folders_folder_type_parent_fk", + "tableFrom": "payload_folders_folder_type", + "tableTo": "payload_folders", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_folders": { + "name": "payload_folders", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "folder_id": { + "name": "folder_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_folders_name_idx": { + "name": "payload_folders_name_idx", + "columns": [ + "name" + ], + "isUnique": false + }, + "payload_folders_folder_idx": { + "name": "payload_folders_folder_idx", + "columns": [ + "folder_id" + ], + "isUnique": false + }, + "payload_folders_updated_at_idx": { + "name": "payload_folders_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_folders_created_at_idx": { + "name": "payload_folders_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_folders_folder_id_payload_folders_id_fk": { + "name": "payload_folders_folder_id_payload_folders_id_fk", + "tableFrom": "payload_folders", + "tableTo": "payload_folders", + "columnsFrom": [ + "folder_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_locked_documents": { + "name": "payload_locked_documents", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "global_slug": { + "name": "global_slug", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_locked_documents_global_slug_idx": { + "name": "payload_locked_documents_global_slug_idx", + "columns": [ + "global_slug" + ], + "isUnique": false + }, + "payload_locked_documents_updated_at_idx": { + "name": "payload_locked_documents_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_locked_documents_created_at_idx": { + "name": "payload_locked_documents_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_locked_documents_rels": { + "name": "payload_locked_documents_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "pages_id": { + "name": "pages_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "preistraeger_id": { + "name": "preistraeger_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "partners_id": { + "name": "partners_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "posts_id": { + "name": "posts_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "events_id": { + "name": "events_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "media_id": { + "name": "media_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "payload_folders_id": { + "name": "payload_folders_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_locked_documents_rels_order_idx": { + "name": "payload_locked_documents_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_locked_documents_rels_parent_idx": { + "name": "payload_locked_documents_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_path_idx": { + "name": "payload_locked_documents_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "payload_locked_documents_rels_pages_id_idx": { + "name": "payload_locked_documents_rels_pages_id_idx", + "columns": [ + "pages_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_preistraeger_id_idx": { + "name": "payload_locked_documents_rels_preistraeger_id_idx", + "columns": [ + "preistraeger_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_partners_id_idx": { + "name": "payload_locked_documents_rels_partners_id_idx", + "columns": [ + "partners_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_posts_id_idx": { + "name": "payload_locked_documents_rels_posts_id_idx", + "columns": [ + "posts_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_events_id_idx": { + "name": "payload_locked_documents_rels_events_id_idx", + "columns": [ + "events_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_media_id_idx": { + "name": "payload_locked_documents_rels_media_id_idx", + "columns": [ + "media_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_users_id_idx": { + "name": "payload_locked_documents_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + }, + "payload_locked_documents_rels_payload_folders_id_idx": { + "name": "payload_locked_documents_rels_payload_folders_id_idx", + "columns": [ + "payload_folders_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_locked_documents_rels_parent_fk": { + "name": "payload_locked_documents_rels_parent_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_locked_documents", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_pages_fk": { + "name": "payload_locked_documents_rels_pages_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_preistraeger_fk": { + "name": "payload_locked_documents_rels_preistraeger_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "preistraeger", + "columnsFrom": [ + "preistraeger_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_partners_fk": { + "name": "payload_locked_documents_rels_partners_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "partners", + "columnsFrom": [ + "partners_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_posts_fk": { + "name": "payload_locked_documents_rels_posts_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "posts", + "columnsFrom": [ + "posts_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_events_fk": { + "name": "payload_locked_documents_rels_events_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "events", + "columnsFrom": [ + "events_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_media_fk": { + "name": "payload_locked_documents_rels_media_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_users_fk": { + "name": "payload_locked_documents_rels_users_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_payload_folders_fk": { + "name": "payload_locked_documents_rels_payload_folders_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_folders", + "columnsFrom": [ + "payload_folders_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_preferences": { + "name": "payload_preferences", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_preferences_key_idx": { + "name": "payload_preferences_key_idx", + "columns": [ + "key" + ], + "isUnique": false + }, + "payload_preferences_updated_at_idx": { + "name": "payload_preferences_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_preferences_created_at_idx": { + "name": "payload_preferences_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_preferences_rels": { + "name": "payload_preferences_rels", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "parent_id": { + "name": "parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "users_id": { + "name": "users_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "payload_preferences_rels_order_idx": { + "name": "payload_preferences_rels_order_idx", + "columns": [ + "order" + ], + "isUnique": false + }, + "payload_preferences_rels_parent_idx": { + "name": "payload_preferences_rels_parent_idx", + "columns": [ + "parent_id" + ], + "isUnique": false + }, + "payload_preferences_rels_path_idx": { + "name": "payload_preferences_rels_path_idx", + "columns": [ + "path" + ], + "isUnique": false + }, + "payload_preferences_rels_users_id_idx": { + "name": "payload_preferences_rels_users_id_idx", + "columns": [ + "users_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "payload_preferences_rels_parent_fk": { + "name": "payload_preferences_rels_parent_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "payload_preferences", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_preferences_rels_users_fk": { + "name": "payload_preferences_rels_users_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "payload_migrations": { + "name": "payload_migrations", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "batch": { + "name": "batch", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))" + } + }, + "indexes": { + "payload_migrations_updated_at_idx": { + "name": "payload_migrations_updated_at_idx", + "columns": [ + "updated_at" + ], + "isUnique": false + }, + "payload_migrations_created_at_idx": { + "name": "payload_migrations_created_at_idx", + "columns": [ + "created_at" + ], + "isUnique": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_nav_items_sub": { + "name": "header_nav_items_sub", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_nav_items_sub_order_idx": { + "name": "header_nav_items_sub_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_nav_items_sub_parent_id_idx": { + "name": "header_nav_items_sub_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_nav_items_sub_parent_id_fk": { + "name": "header_nav_items_sub_parent_id_fk", + "tableFrom": "header_nav_items_sub", + "tableTo": "header_nav_items", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_nav_items": { + "name": "header_nav_items", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "sub_label": { + "name": "sub_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "header_nav_items_order_idx": { + "name": "header_nav_items_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_nav_items_parent_id_idx": { + "name": "header_nav_items_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_nav_items_parent_id_fk": { + "name": "header_nav_items_parent_id_fk", + "tableFrom": "header_nav_items", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_secondary_links": { + "name": "header_secondary_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_secondary_links_order_idx": { + "name": "header_secondary_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_secondary_links_parent_id_idx": { + "name": "header_secondary_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_secondary_links_parent_id_fk": { + "name": "header_secondary_links_parent_id_fk", + "tableFrom": "header_secondary_links", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_ctas": { + "name": "header_ctas", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "variant": { + "name": "variant", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'primary'" + } + }, + "indexes": { + "header_ctas_order_idx": { + "name": "header_ctas_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_ctas_parent_id_idx": { + "name": "header_ctas_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_ctas_parent_id_fk": { + "name": "header_ctas_parent_id_fk", + "tableFrom": "header_ctas", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header_social_links": { + "name": "header_social_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "header_social_links_order_idx": { + "name": "header_social_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "header_social_links_parent_id_idx": { + "name": "header_social_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_social_links_parent_id_fk": { + "name": "header_social_links_parent_id_fk", + "tableFrom": "header_social_links", + "tableTo": "header", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "header": { + "name": "header", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "overlay_logo_alt": { + "name": "overlay_logo_alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'BMP Logo'" + }, + "overlay_kicker": { + "name": "overlay_kicker", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "overlay_headline": { + "name": "overlay_headline", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'EXZELLENZ HAT\nEINEN NAMEN.'" + }, + "mobile_watermark": { + "name": "mobile_watermark", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Exzellenz\nseit 2005'" + }, + "menu_label": { + "name": "menu_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Menü'" + }, + "open_label": { + "name": "open_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Navigation öffnen'" + }, + "close_label": { + "name": "close_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Menü schließen'" + }, + "dialog_label": { + "name": "dialog_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Navigation'" + }, + "overview_label": { + "name": "overview_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Überblick'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "header_logo_idx": { + "name": "header_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "header_logo_id_media_id_fk": { + "name": "header_logo_id_media_id_fk", + "tableFrom": "header", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_ctas": { + "name": "footer_ctas", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "variant": { + "name": "variant", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'primary'" + } + }, + "indexes": { + "footer_ctas_order_idx": { + "name": "footer_ctas_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_ctas_parent_id_idx": { + "name": "footer_ctas_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_ctas_parent_id_fk": { + "name": "footer_ctas_parent_id_fk", + "tableFrom": "footer_ctas", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_link_columns_links": { + "name": "footer_link_columns_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "path": { + "name": "path", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_link_columns_links_order_idx": { + "name": "footer_link_columns_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_link_columns_links_parent_id_idx": { + "name": "footer_link_columns_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_link_columns_links_parent_id_fk": { + "name": "footer_link_columns_links_parent_id_fk", + "tableFrom": "footer_link_columns_links", + "tableTo": "footer_link_columns", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_link_columns": { + "name": "footer_link_columns", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_link_columns_order_idx": { + "name": "footer_link_columns_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_link_columns_parent_id_idx": { + "name": "footer_link_columns_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_link_columns_parent_id_fk": { + "name": "footer_link_columns_parent_id_fk", + "tableFrom": "footer_link_columns", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_partner_logos": { + "name": "footer_partner_logos", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "image_id": { + "name": "image_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "alt": { + "name": "alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_partner_logos_order_idx": { + "name": "footer_partner_logos_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_partner_logos_parent_id_idx": { + "name": "footer_partner_logos_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + }, + "footer_partner_logos_image_idx": { + "name": "footer_partner_logos_image_idx", + "columns": [ + "image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_partner_logos_image_id_media_id_fk": { + "name": "footer_partner_logos_image_id_media_id_fk", + "tableFrom": "footer_partner_logos", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "footer_partner_logos_parent_id_fk": { + "name": "footer_partner_logos_parent_id_fk", + "tableFrom": "footer_partner_logos", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer_social_links": { + "name": "footer_social_links", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "label": { + "name": "label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "href": { + "name": "href", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": { + "footer_social_links_order_idx": { + "name": "footer_social_links_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "footer_social_links_parent_id_idx": { + "name": "footer_social_links_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_social_links_parent_id_fk": { + "name": "footer_social_links_parent_id_fk", + "tableFrom": "footer_social_links", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "footer": { + "name": "footer", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "logo_id": { + "name": "logo_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "logo_alt": { + "name": "logo_alt", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischer Mittelstandspreis'" + }, + "headline_prefix": { + "name": "headline_prefix", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Der Preis des'" + }, + "headline_accent": { + "name": "headline_accent", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Bayerischen'" + }, + "headline_suffix": { + "name": "headline_suffix", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Mittelstands'" + }, + "since_label": { + "name": "since_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Exzellenz seit 2005'" + }, + "year": { + "name": "year", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'2026'" + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Die renommierteste Auszeichnung für herausragende Unternehmen des bayerischen Mittelstands.'" + }, + "copyright": { + "name": "copyright", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'© 2026 Bayerischer Mittelstandspreis · Alle Rechte vorbehalten'" + }, + "partner_label": { + "name": "partner_label", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Partner'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "footer_logo_idx": { + "name": "footer_logo_idx", + "columns": [ + "logo_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "footer_logo_id_media_id_fk": { + "name": "footer_logo_id_media_id_fk", + "tableFrom": "footer", + "tableTo": "media", + "columnsFrom": [ + "logo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "site_settings": { + "name": "site_settings", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "skyline_image_id": { + "name": "skyline_image_id", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "generic_page_kicker": { + "name": "generic_page_kicker", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'CMS'" + }, + "generic_page_title": { + "name": "generic_page_title", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Seite'" + }, + "generic_page_description": { + "name": "generic_page_description", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false, + "default": "'Diese Route wird aus Payload CMS geladen. Ergänze Inhalte im entsprechenden Collection-Dokument.'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": { + "site_settings_skyline_image_idx": { + "name": "site_settings_skyline_image_idx", + "columns": [ + "skyline_image_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "site_settings_skyline_image_id_media_id_fk": { + "name": "site_settings_skyline_image_id_media_id_fk", + "tableFrom": "site_settings", + "tableTo": "media", + "columnsFrom": [ + "skyline_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "application_phase_phases": { + "name": "application_phase_phases", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "_parent_id": { + "name": "_parent_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "num": { + "name": "num", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "tag": { + "name": "tag", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "pulse": { + "name": "pulse", + "type": "integer", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": true + }, + "phase": { + "name": "phase", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "headline": { + "name": "headline", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cta_label": { + "name": "cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "cta_url": { + "name": "cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "accent": { + "name": "accent", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "bg": { + "name": "bg", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "glow": { + "name": "glow", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "meta": { + "name": "meta", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "success_applications": { + "name": "success_applications", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "success_winners": { + "name": "success_winners", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "membership_cta_label": { + "name": "membership_cta_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Mitglied werden'" + }, + "membership_cta_url": { + "name": "membership_cta_url", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'/mitglied-werden'" + } + }, + "indexes": { + "application_phase_phases_order_idx": { + "name": "application_phase_phases_order_idx", + "columns": [ + "_order" + ], + "isUnique": false + }, + "application_phase_phases_parent_id_idx": { + "name": "application_phase_phases_parent_id_idx", + "columns": [ + "_parent_id" + ], + "isUnique": false + } + }, + "foreignKeys": { + "application_phase_phases_parent_id_fk": { + "name": "application_phase_phases_parent_id_fk", + "tableFrom": "application_phase_phases", + "tableTo": "application_phase", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + }, + "application_phase": { + "name": "application_phase", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "active_phase": { + "name": "active_phase", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'0'" + }, + "no_action_label": { + "name": "no_action_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Kein Handlungsbedarf'" + }, + "success_applications_label": { + "name": "success_applications_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Bewerbungen'" + }, + "success_winners_label": { + "name": "success_winners_label", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "'Preisträger'" + }, + "updated_at": { + "name": "updated_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "created_at": { + "name": "created_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + } + }, + "views": {}, + "enums": {}, + "_meta": { + "tables": {}, + "columns": {} + }, + "internal": { + "indexes": {} + }, + "id": "dfb01265-e23a-49b0-95d1-1688f85a1813", + "prevId": "00000000-0000-0000-0000-000000000000" +} \ No newline at end of file diff --git a/src/migrations/20260630_182219_prune_unused_admin_collections.ts b/src/migrations/20260630_182219_prune_unused_admin_collections.ts new file mode 100644 index 0000000..4390341 --- /dev/null +++ b/src/migrations/20260630_182219_prune_unused_admin_collections.ts @@ -0,0 +1,555 @@ +import { type MigrateUpArgs, type MigrateDownArgs, sql } from '@payloadcms/db-sqlite' + +export async function up({ db, payload: _payload, req: _req }: MigrateUpArgs): Promise { + await db.run(sql`PRAGMA foreign_keys=OFF;`) + await db.run(sql`DROP TABLE \`pages_blocks_archive\`;`) + await db.run(sql`DROP TABLE \`pages_blocks_form_block\`;`) + await db.run(sql`DROP TABLE \`_pages_v_blocks_archive\`;`) + await db.run(sql`DROP TABLE \`_pages_v_blocks_form_block\`;`) + await db.run(sql`DROP TABLE \`categories_breadcrumbs\`;`) + await db.run(sql`DROP TABLE \`categories\`;`) + await db.run(sql`DROP TABLE \`redirects\`;`) + await db.run(sql`DROP TABLE \`redirects_rels\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_checkbox\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_country\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_email\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_message\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_number\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_select_options\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_select\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_state\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_text\`;`) + await db.run(sql`DROP TABLE \`forms_blocks_textarea\`;`) + await db.run(sql`DROP TABLE \`forms_emails\`;`) + await db.run(sql`DROP TABLE \`forms\`;`) + await db.run(sql`DROP TABLE \`form_submissions_submission_data\`;`) + await db.run(sql`DROP TABLE \`form_submissions\`;`) + await db.run(sql`DROP TABLE \`search_categories\`;`) + await db.run(sql`DROP TABLE \`search\`;`) + await db.run(sql`DROP TABLE \`search_rels\`;`) + await db.run(sql`PRAGMA foreign_keys=OFF;`) + await db.run(sql`CREATE TABLE \`__new_pages_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`pages_id\` integer, + \`posts_id\` integer, + \`preistraeger_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`pages_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`preistraeger_id\`) REFERENCES \`preistraeger\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new_pages_rels\`("id", "order", "parent_id", "path", "pages_id", "posts_id", "preistraeger_id") SELECT "id", "order", "parent_id", "path", "pages_id", "posts_id", "preistraeger_id" FROM \`pages_rels\`;`) + await db.run(sql`DROP TABLE \`pages_rels\`;`) + await db.run(sql`ALTER TABLE \`__new_pages_rels\` RENAME TO \`pages_rels\`;`) + await db.run(sql`PRAGMA foreign_keys=ON;`) + await db.run(sql`CREATE INDEX \`pages_rels_order_idx\` ON \`pages_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`pages_rels_parent_idx\` ON \`pages_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`pages_rels_path_idx\` ON \`pages_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`pages_rels_pages_id_idx\` ON \`pages_rels\` (\`pages_id\`);`) + await db.run(sql`CREATE INDEX \`pages_rels_posts_id_idx\` ON \`pages_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE INDEX \`pages_rels_preistraeger_id_idx\` ON \`pages_rels\` (\`preistraeger_id\`);`) + await db.run(sql`CREATE TABLE \`__new__pages_v_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`pages_id\` integer, + \`posts_id\` integer, + \`preistraeger_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`_pages_v\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`pages_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`preistraeger_id\`) REFERENCES \`preistraeger\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new__pages_v_rels\`("id", "order", "parent_id", "path", "pages_id", "posts_id", "preistraeger_id") SELECT "id", "order", "parent_id", "path", "pages_id", "posts_id", "preistraeger_id" FROM \`_pages_v_rels\`;`) + await db.run(sql`DROP TABLE \`_pages_v_rels\`;`) + await db.run(sql`ALTER TABLE \`__new__pages_v_rels\` RENAME TO \`_pages_v_rels\`;`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_order_idx\` ON \`_pages_v_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_parent_idx\` ON \`_pages_v_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_path_idx\` ON \`_pages_v_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_pages_id_idx\` ON \`_pages_v_rels\` (\`pages_id\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_posts_id_idx\` ON \`_pages_v_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_preistraeger_id_idx\` ON \`_pages_v_rels\` (\`preistraeger_id\`);`) + await db.run(sql`CREATE TABLE \`__new_posts_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`posts_id\` integer, + \`users_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`users_id\`) REFERENCES \`users\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new_posts_rels\`("id", "order", "parent_id", "path", "posts_id", "users_id") SELECT "id", "order", "parent_id", "path", "posts_id", "users_id" FROM \`posts_rels\`;`) + await db.run(sql`DROP TABLE \`posts_rels\`;`) + await db.run(sql`ALTER TABLE \`__new_posts_rels\` RENAME TO \`posts_rels\`;`) + await db.run(sql`CREATE INDEX \`posts_rels_order_idx\` ON \`posts_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`posts_rels_parent_idx\` ON \`posts_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`posts_rels_path_idx\` ON \`posts_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`posts_rels_posts_id_idx\` ON \`posts_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE INDEX \`posts_rels_users_id_idx\` ON \`posts_rels\` (\`users_id\`);`) + await db.run(sql`CREATE TABLE \`__new__posts_v_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`posts_id\` integer, + \`users_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`_posts_v\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`users_id\`) REFERENCES \`users\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new__posts_v_rels\`("id", "order", "parent_id", "path", "posts_id", "users_id") SELECT "id", "order", "parent_id", "path", "posts_id", "users_id" FROM \`_posts_v_rels\`;`) + await db.run(sql`DROP TABLE \`_posts_v_rels\`;`) + await db.run(sql`ALTER TABLE \`__new__posts_v_rels\` RENAME TO \`_posts_v_rels\`;`) + await db.run(sql`CREATE INDEX \`_posts_v_rels_order_idx\` ON \`_posts_v_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_rels_parent_idx\` ON \`_posts_v_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_rels_path_idx\` ON \`_posts_v_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_rels_posts_id_idx\` ON \`_posts_v_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_rels_users_id_idx\` ON \`_posts_v_rels\` (\`users_id\`);`) + await db.run(sql`CREATE TABLE \`__new_payload_locked_documents_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`pages_id\` integer, + \`preistraeger_id\` integer, + \`partners_id\` integer, + \`posts_id\` integer, + \`events_id\` integer, + \`media_id\` integer, + \`users_id\` integer, + \`payload_folders_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`payload_locked_documents\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`pages_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`preistraeger_id\`) REFERENCES \`preistraeger\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`partners_id\`) REFERENCES \`partners\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`events_id\`) REFERENCES \`events\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`media_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`users_id\`) REFERENCES \`users\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`payload_folders_id\`) REFERENCES \`payload_folders\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`INSERT INTO \`__new_payload_locked_documents_rels\`("id", "order", "parent_id", "path", "pages_id", "preistraeger_id", "partners_id", "posts_id", "events_id", "media_id", "users_id", "payload_folders_id") SELECT "id", "order", "parent_id", "path", "pages_id", "preistraeger_id", "partners_id", "posts_id", "events_id", "media_id", "users_id", "payload_folders_id" FROM \`payload_locked_documents_rels\`;`) + await db.run(sql`DROP TABLE \`payload_locked_documents_rels\`;`) + await db.run(sql`ALTER TABLE \`__new_payload_locked_documents_rels\` RENAME TO \`payload_locked_documents_rels\`;`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_order_idx\` ON \`payload_locked_documents_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_parent_idx\` ON \`payload_locked_documents_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_path_idx\` ON \`payload_locked_documents_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_pages_id_idx\` ON \`payload_locked_documents_rels\` (\`pages_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_preistraeger_id_idx\` ON \`payload_locked_documents_rels\` (\`preistraeger_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_partners_id_idx\` ON \`payload_locked_documents_rels\` (\`partners_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_posts_id_idx\` ON \`payload_locked_documents_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_events_id_idx\` ON \`payload_locked_documents_rels\` (\`events_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_media_id_idx\` ON \`payload_locked_documents_rels\` (\`media_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_users_id_idx\` ON \`payload_locked_documents_rels\` (\`users_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_payload_folders_id_idx\` ON \`payload_locked_documents_rels\` (\`payload_folders_id\`);`) +} + +export async function down({ db, payload: _payload, req: _req }: MigrateDownArgs): Promise { + await db.run(sql`CREATE TABLE \`pages_blocks_archive\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`intro_content\` text, + \`populate_by\` text DEFAULT 'collection', + \`relation_to\` text DEFAULT 'posts', + \`limit\` numeric DEFAULT 10, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`pages_blocks_archive_order_idx\` ON \`pages_blocks_archive\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`pages_blocks_archive_parent_id_idx\` ON \`pages_blocks_archive\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`pages_blocks_archive_path_idx\` ON \`pages_blocks_archive\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`pages_blocks_form_block\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`form_id\` integer, + \`enable_intro\` integer, + \`intro_content\` text, + \`block_name\` text, + FOREIGN KEY (\`form_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`pages_blocks_form_block_order_idx\` ON \`pages_blocks_form_block\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`pages_blocks_form_block_parent_id_idx\` ON \`pages_blocks_form_block\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`pages_blocks_form_block_path_idx\` ON \`pages_blocks_form_block\` (\`_path\`);`) + await db.run(sql`CREATE INDEX \`pages_blocks_form_block_form_idx\` ON \`pages_blocks_form_block\` (\`form_id\`);`) + await db.run(sql`CREATE TABLE \`_pages_v_blocks_archive\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` integer PRIMARY KEY NOT NULL, + \`intro_content\` text, + \`populate_by\` text DEFAULT 'collection', + \`relation_to\` text DEFAULT 'posts', + \`limit\` numeric DEFAULT 10, + \`_uuid\` text, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`_pages_v\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_archive_order_idx\` ON \`_pages_v_blocks_archive\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_archive_parent_id_idx\` ON \`_pages_v_blocks_archive\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_archive_path_idx\` ON \`_pages_v_blocks_archive\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`_pages_v_blocks_form_block\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` integer PRIMARY KEY NOT NULL, + \`form_id\` integer, + \`enable_intro\` integer, + \`intro_content\` text, + \`_uuid\` text, + \`block_name\` text, + FOREIGN KEY (\`form_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`_pages_v\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_form_block_order_idx\` ON \`_pages_v_blocks_form_block\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_form_block_parent_id_idx\` ON \`_pages_v_blocks_form_block\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_form_block_path_idx\` ON \`_pages_v_blocks_form_block\` (\`_path\`);`) + await db.run(sql`CREATE INDEX \`_pages_v_blocks_form_block_form_idx\` ON \`_pages_v_blocks_form_block\` (\`form_id\`);`) + await db.run(sql`CREATE TABLE \`categories_breadcrumbs\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`doc_id\` integer, + \`url\` text, + \`label\` text, + FOREIGN KEY (\`doc_id\`) REFERENCES \`categories\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`categories\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`categories_breadcrumbs_order_idx\` ON \`categories_breadcrumbs\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`categories_breadcrumbs_parent_id_idx\` ON \`categories_breadcrumbs\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`categories_breadcrumbs_doc_idx\` ON \`categories_breadcrumbs\` (\`doc_id\`);`) + await db.run(sql`CREATE TABLE \`categories\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`title\` text NOT NULL, + \`generate_slug\` integer DEFAULT true, + \`slug\` text NOT NULL, + \`parent_id\` integer, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + FOREIGN KEY (\`parent_id\`) REFERENCES \`categories\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`CREATE UNIQUE INDEX \`categories_slug_idx\` ON \`categories\` (\`slug\`);`) + await db.run(sql`CREATE INDEX \`categories_parent_idx\` ON \`categories\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`categories_updated_at_idx\` ON \`categories\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`categories_created_at_idx\` ON \`categories\` (\`created_at\`);`) + await db.run(sql`CREATE TABLE \`redirects\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`from\` text NOT NULL, + \`to_type\` text DEFAULT 'reference', + \`to_url\` text, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL + ); + `) + await db.run(sql`CREATE UNIQUE INDEX \`redirects_from_idx\` ON \`redirects\` (\`from\`);`) + await db.run(sql`CREATE INDEX \`redirects_updated_at_idx\` ON \`redirects\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`redirects_created_at_idx\` ON \`redirects\` (\`created_at\`);`) + await db.run(sql`CREATE TABLE \`redirects_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`pages_id\` integer, + \`posts_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`redirects\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`pages_id\`) REFERENCES \`pages\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`redirects_rels_order_idx\` ON \`redirects_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`redirects_rels_parent_idx\` ON \`redirects_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`redirects_rels_path_idx\` ON \`redirects_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`redirects_rels_pages_id_idx\` ON \`redirects_rels\` (\`pages_id\`);`) + await db.run(sql`CREATE INDEX \`redirects_rels_posts_id_idx\` ON \`redirects_rels\` (\`posts_id\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_checkbox\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`required\` integer, + \`default_value\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_checkbox_order_idx\` ON \`forms_blocks_checkbox\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_checkbox_parent_id_idx\` ON \`forms_blocks_checkbox\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_checkbox_path_idx\` ON \`forms_blocks_checkbox\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_country\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_country_order_idx\` ON \`forms_blocks_country\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_country_parent_id_idx\` ON \`forms_blocks_country\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_country_path_idx\` ON \`forms_blocks_country\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_email\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_email_order_idx\` ON \`forms_blocks_email\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_email_parent_id_idx\` ON \`forms_blocks_email\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_email_path_idx\` ON \`forms_blocks_email\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_message\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`message\` text, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_message_order_idx\` ON \`forms_blocks_message\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_message_parent_id_idx\` ON \`forms_blocks_message\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_message_path_idx\` ON \`forms_blocks_message\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_number\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`default_value\` numeric, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_number_order_idx\` ON \`forms_blocks_number\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_number_parent_id_idx\` ON \`forms_blocks_number\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_number_path_idx\` ON \`forms_blocks_number\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_select_options\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`label\` text NOT NULL, + \`value\` text NOT NULL, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms_blocks_select\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_select_options_order_idx\` ON \`forms_blocks_select_options\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_select_options_parent_id_idx\` ON \`forms_blocks_select_options\` (\`_parent_id\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_select\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`default_value\` text, + \`placeholder\` text, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_select_order_idx\` ON \`forms_blocks_select\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_select_parent_id_idx\` ON \`forms_blocks_select\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_select_path_idx\` ON \`forms_blocks_select\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_state\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_state_order_idx\` ON \`forms_blocks_state\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_state_parent_id_idx\` ON \`forms_blocks_state\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_state_path_idx\` ON \`forms_blocks_state\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_text\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`default_value\` text, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_text_order_idx\` ON \`forms_blocks_text\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_text_parent_id_idx\` ON \`forms_blocks_text\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_text_path_idx\` ON \`forms_blocks_text\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_blocks_textarea\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`_path\` text NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`name\` text NOT NULL, + \`label\` text, + \`width\` numeric, + \`default_value\` text, + \`required\` integer, + \`block_name\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_blocks_textarea_order_idx\` ON \`forms_blocks_textarea\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_textarea_parent_id_idx\` ON \`forms_blocks_textarea\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`forms_blocks_textarea_path_idx\` ON \`forms_blocks_textarea\` (\`_path\`);`) + await db.run(sql`CREATE TABLE \`forms_emails\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`email_to\` text, + \`cc\` text, + \`bcc\` text, + \`reply_to\` text, + \`email_from\` text, + \`subject\` text DEFAULT 'You''ve received a new message.' NOT NULL, + \`message\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`forms_emails_order_idx\` ON \`forms_emails\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`forms_emails_parent_id_idx\` ON \`forms_emails\` (\`_parent_id\`);`) + await db.run(sql`CREATE TABLE \`forms\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`title\` text NOT NULL, + \`submit_button_label\` text, + \`confirmation_type\` text DEFAULT 'message', + \`confirmation_message\` text, + \`redirect_url\` text, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL + ); + `) + await db.run(sql`CREATE INDEX \`forms_updated_at_idx\` ON \`forms\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`forms_created_at_idx\` ON \`forms\` (\`created_at\`);`) + await db.run(sql`CREATE TABLE \`form_submissions_submission_data\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`field\` text NOT NULL, + \`value\` text NOT NULL, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`form_submissions\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`form_submissions_submission_data_order_idx\` ON \`form_submissions_submission_data\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`form_submissions_submission_data_parent_id_idx\` ON \`form_submissions_submission_data\` (\`_parent_id\`);`) + await db.run(sql`CREATE TABLE \`form_submissions\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`form_id\` integer NOT NULL, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + FOREIGN KEY (\`form_id\`) REFERENCES \`forms\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`CREATE INDEX \`form_submissions_form_idx\` ON \`form_submissions\` (\`form_id\`);`) + await db.run(sql`CREATE INDEX \`form_submissions_updated_at_idx\` ON \`form_submissions\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`form_submissions_created_at_idx\` ON \`form_submissions\` (\`created_at\`);`) + await db.run(sql`CREATE TABLE \`search_categories\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`relation_to\` text, + \`category_i_d\` text, + \`title\` text, + FOREIGN KEY (\`_parent_id\`) REFERENCES \`search\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`search_categories_order_idx\` ON \`search_categories\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`search_categories_parent_id_idx\` ON \`search_categories\` (\`_parent_id\`);`) + await db.run(sql`CREATE TABLE \`search\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`title\` text, + \`priority\` numeric, + \`slug\` text, + \`meta_title\` text, + \`meta_description\` text, + \`meta_image_id\` integer, + \`updated_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + \`created_at\` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL, + FOREIGN KEY (\`meta_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`CREATE INDEX \`search_slug_idx\` ON \`search\` (\`slug\`);`) + await db.run(sql`CREATE INDEX \`search_meta_meta_image_idx\` ON \`search\` (\`meta_image_id\`);`) + await db.run(sql`CREATE INDEX \`search_updated_at_idx\` ON \`search\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`search_created_at_idx\` ON \`search\` (\`created_at\`);`) + await db.run(sql`CREATE TABLE \`search_rels\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`order\` integer, + \`parent_id\` integer NOT NULL, + \`path\` text NOT NULL, + \`posts_id\` integer, + FOREIGN KEY (\`parent_id\`) REFERENCES \`search\`(\`id\`) ON UPDATE no action ON DELETE cascade, + FOREIGN KEY (\`posts_id\`) REFERENCES \`posts\`(\`id\`) ON UPDATE no action ON DELETE cascade + ); + `) + await db.run(sql`CREATE INDEX \`search_rels_order_idx\` ON \`search_rels\` (\`order\`);`) + await db.run(sql`CREATE INDEX \`search_rels_parent_idx\` ON \`search_rels\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`search_rels_path_idx\` ON \`search_rels\` (\`path\`);`) + await db.run(sql`CREATE INDEX \`search_rels_posts_id_idx\` ON \`search_rels\` (\`posts_id\`);`) + await db.run(sql`ALTER TABLE \`pages_rels\` ADD \`categories_id\` integer REFERENCES categories(id);`) + await db.run(sql`CREATE INDEX \`pages_rels_categories_id_idx\` ON \`pages_rels\` (\`categories_id\`);`) + await db.run(sql`ALTER TABLE \`_pages_v_rels\` ADD \`categories_id\` integer REFERENCES categories(id);`) + await db.run(sql`CREATE INDEX \`_pages_v_rels_categories_id_idx\` ON \`_pages_v_rels\` (\`categories_id\`);`) + await db.run(sql`ALTER TABLE \`posts_rels\` ADD \`categories_id\` integer REFERENCES categories(id);`) + await db.run(sql`CREATE INDEX \`posts_rels_categories_id_idx\` ON \`posts_rels\` (\`categories_id\`);`) + await db.run(sql`ALTER TABLE \`_posts_v_rels\` ADD \`categories_id\` integer REFERENCES categories(id);`) + await db.run(sql`CREATE INDEX \`_posts_v_rels_categories_id_idx\` ON \`_posts_v_rels\` (\`categories_id\`);`) + await db.run(sql`ALTER TABLE \`payload_locked_documents_rels\` ADD \`categories_id\` integer REFERENCES categories(id);`) + await db.run(sql`ALTER TABLE \`payload_locked_documents_rels\` ADD \`redirects_id\` integer REFERENCES redirects(id);`) + await db.run(sql`ALTER TABLE \`payload_locked_documents_rels\` ADD \`forms_id\` integer REFERENCES forms(id);`) + await db.run(sql`ALTER TABLE \`payload_locked_documents_rels\` ADD \`form_submissions_id\` integer REFERENCES form_submissions(id);`) + await db.run(sql`ALTER TABLE \`payload_locked_documents_rels\` ADD \`search_id\` integer REFERENCES search(id);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_categories_id_idx\` ON \`payload_locked_documents_rels\` (\`categories_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_redirects_id_idx\` ON \`payload_locked_documents_rels\` (\`redirects_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_forms_id_idx\` ON \`payload_locked_documents_rels\` (\`forms_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_form_submissions_id_idx\` ON \`payload_locked_documents_rels\` (\`form_submissions_id\`);`) + await db.run(sql`CREATE INDEX \`payload_locked_documents_rels_search_id_idx\` ON \`payload_locked_documents_rels\` (\`search_id\`);`) +} diff --git a/src/migrations/index.ts b/src/migrations/index.ts index d17aad9..1b3ddb0 100644 --- a/src/migrations/index.ts +++ b/src/migrations/index.ts @@ -1,5 +1,8 @@ import * as migration_20260630_133242 from './20260630_133242'; import * as migration_20260630_165002_participation_awards_grid from './20260630_165002_participation_awards_grid'; +import * as migration_20260630_172754_network_partner_logo_uploads from './20260630_172754_network_partner_logo_uploads'; +import * as migration_20260630_175614_partners_collection from './20260630_175614_partners_collection'; +import * as migration_20260630_182219_prune_unused_admin_collections from './20260630_182219_prune_unused_admin_collections'; export const migrations = [ { @@ -10,6 +13,21 @@ export const migrations = [ { up: migration_20260630_165002_participation_awards_grid.up, down: migration_20260630_165002_participation_awards_grid.down, - name: '20260630_165002_participation_awards_grid' + name: '20260630_165002_participation_awards_grid', + }, + { + up: migration_20260630_172754_network_partner_logo_uploads.up, + down: migration_20260630_172754_network_partner_logo_uploads.down, + name: '20260630_172754_network_partner_logo_uploads', + }, + { + up: migration_20260630_175614_partners_collection.up, + down: migration_20260630_175614_partners_collection.down, + name: '20260630_175614_partners_collection', + }, + { + up: migration_20260630_182219_prune_unused_admin_collections.up, + down: migration_20260630_182219_prune_unused_admin_collections.down, + name: '20260630_182219_prune_unused_admin_collections', }, ]; diff --git a/src/payload-types.ts b/src/payload-types.ts index 003d310..3daa038 100644 --- a/src/payload-types.ts +++ b/src/payload-types.ts @@ -68,16 +68,12 @@ export interface Config { blocks: {}; collections: { pages: Page; + preistraeger: Preistraeger; + partners: Partner; posts: Post; events: Event; - preistraeger: Preistraeger; media: Media; - categories: Category; users: User; - redirects: Redirect; - forms: Form; - 'form-submissions': FormSubmission; - search: Search; 'payload-kv': PayloadKv; 'payload-jobs': PayloadJob; 'payload-folders': FolderInterface; @@ -92,16 +88,12 @@ export interface Config { }; collectionsSelect: { pages: PagesSelect | PagesSelect; + preistraeger: PreistraegerSelect | PreistraegerSelect; + partners: PartnersSelect | PartnersSelect; posts: PostsSelect | PostsSelect; events: EventsSelect | EventsSelect; - preistraeger: PreistraegerSelect | PreistraegerSelect; media: MediaSelect | MediaSelect; - categories: CategoriesSelect | CategoriesSelect; users: UsersSelect | UsersSelect; - redirects: RedirectsSelect | RedirectsSelect; - forms: FormsSelect | FormsSelect; - 'form-submissions': FormSubmissionsSelect | FormSubmissionsSelect; - search: SearchSelect | SearchSelect; 'payload-kv': PayloadKvSelect | PayloadKvSelect; 'payload-jobs': PayloadJobsSelect | PayloadJobsSelect; 'payload-folders': PayloadFoldersSelect | PayloadFoldersSelect; @@ -209,7 +201,7 @@ export interface Page { | null; media?: (number | null) | Media; }; - layout: (CallToActionBlock | ContentBlock | MediaBlock | ArchiveBlock | FormBlock)[]; + layout: (CallToActionBlock | ContentBlock | MediaBlock)[]; /** * Edit the homepage in the same order it appears on the frontend. The generic Hero and Content tabs are hidden for the home page to avoid duplicate controls. */ @@ -237,6 +229,9 @@ export interface Page { }; videoLabel?: string | null; partnersLabel?: string | null; + /** + * Used only if partner collection records are unavailable. The frontend prefers the real logo uploads from the Partners collection. + */ partners?: | { name?: string | null; @@ -1756,7 +1751,7 @@ export interface Page { | null; }; /** - * Partner section, tier labels, partner records, and modal labels. + * Partner section copy, tier labels, and modal labels. Partner records are managed in the Partners collection. */ partners?: { eyebrow?: string | null; @@ -1783,26 +1778,6 @@ export interface Page { footerTitle?: string | null; footerRolePrefix?: string | null; }; - items?: - | { - stableId?: string | null; - name?: string | null; - role?: string | null; - tier?: number | null; - desc?: string | null; - fullDesc?: string | null; - logoKind?: ('text' | 'serif' | 'badge' | 'monogram' | 'dot' | 'leaf' | 'rsm' | 'deutschebank') | null; - logoText?: string | null; - logoSubtext?: string | null; - logoColor?: string | null; - industry?: string | null; - location?: string | null; - website?: string | null; - linkedin?: string | null; - heroImg?: string | null; - id?: string | null; - }[] - | null; }; /** * Sponsoring pitch, image, benefits, form eyebrow, and membership footnote. @@ -2192,7 +2167,6 @@ export interface Post { [k: string]: unknown; }; relatedPosts?: (number | Post)[] | null; - categories?: (number | Category)[] | null; meta?: { title?: string | null; /** @@ -2341,30 +2315,6 @@ export interface FolderInterface { updatedAt: string; createdAt: string; } -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "categories". - */ -export interface Category { - id: number; - title: string; - /** - * When enabled, the slug will auto-generate from the title field on save and autosave. - */ - generateSlug?: boolean | null; - slug: string; - parent?: (number | null) | Category; - breadcrumbs?: - | { - doc?: (number | null) | Category; - url?: string | null; - label?: string | null; - id?: string | null; - }[] - | null; - updatedAt: string; - createdAt: string; -} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "users". @@ -2499,240 +2449,6 @@ export interface MediaBlock { blockName?: string | null; blockType: 'mediaBlock'; } -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "ArchiveBlock". - */ -export interface ArchiveBlock { - introContent?: { - root: { - type: string; - children: { - type: any; - version: number; - [k: string]: unknown; - }[]; - direction: ('ltr' | 'rtl') | null; - format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; - indent: number; - version: number; - }; - [k: string]: unknown; - } | null; - populateBy?: ('collection' | 'selection') | null; - relationTo?: 'posts' | null; - categories?: (number | Category)[] | null; - limit?: number | null; - selectedDocs?: - | { - relationTo: 'posts'; - value: number | Post; - }[] - | null; - id?: string | null; - blockName?: string | null; - blockType: 'archive'; -} -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "FormBlock". - */ -export interface FormBlock { - form: number | Form; - enableIntro?: boolean | null; - introContent?: { - root: { - type: string; - children: { - type: any; - version: number; - [k: string]: unknown; - }[]; - direction: ('ltr' | 'rtl') | null; - format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; - indent: number; - version: number; - }; - [k: string]: unknown; - } | null; - id?: string | null; - blockName?: string | null; - blockType: 'formBlock'; -} -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "forms". - */ -export interface Form { - id: number; - title: string; - fields?: - | ( - | { - name: string; - label?: string | null; - width?: number | null; - required?: boolean | null; - defaultValue?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'checkbox'; - } - | { - name: string; - label?: string | null; - width?: number | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'country'; - } - | { - name: string; - label?: string | null; - width?: number | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'email'; - } - | { - message?: { - root: { - type: string; - children: { - type: any; - version: number; - [k: string]: unknown; - }[]; - direction: ('ltr' | 'rtl') | null; - format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; - indent: number; - version: number; - }; - [k: string]: unknown; - } | null; - id?: string | null; - blockName?: string | null; - blockType: 'message'; - } - | { - name: string; - label?: string | null; - width?: number | null; - defaultValue?: number | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'number'; - } - | { - name: string; - label?: string | null; - width?: number | null; - defaultValue?: string | null; - placeholder?: string | null; - options?: - | { - label: string; - value: string; - id?: string | null; - }[] - | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'select'; - } - | { - name: string; - label?: string | null; - width?: number | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'state'; - } - | { - name: string; - label?: string | null; - width?: number | null; - defaultValue?: string | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'text'; - } - | { - name: string; - label?: string | null; - width?: number | null; - defaultValue?: string | null; - required?: boolean | null; - id?: string | null; - blockName?: string | null; - blockType: 'textarea'; - } - )[] - | null; - submitButtonLabel?: string | null; - /** - * Choose whether to display an on-page message or redirect to a different page after they submit the form. - */ - confirmationType?: ('message' | 'redirect') | null; - confirmationMessage?: { - root: { - type: string; - children: { - type: any; - version: number; - [k: string]: unknown; - }[]; - direction: ('ltr' | 'rtl') | null; - format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; - indent: number; - version: number; - }; - [k: string]: unknown; - } | null; - redirect?: { - url: string; - }; - /** - * Send custom emails when the form submits. Use comma separated lists to send the same email to multiple recipients. To reference a value from this form, wrap that field's name with double curly brackets, i.e. {{firstName}}. You can use a wildcard {{*}} to output all data and {{*:table}} to format it as an HTML table in the email. - */ - emails?: - | { - emailTo?: string | null; - cc?: string | null; - bcc?: string | null; - replyTo?: string | null; - emailFrom?: string | null; - subject: string; - /** - * Enter the message that should be sent in this email. - */ - message?: { - root: { - type: string; - children: { - type: any; - version: number; - [k: string]: unknown; - }[]; - direction: ('ltr' | 'rtl') | null; - format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; - indent: number; - version: number; - }; - [k: string]: unknown; - } | null; - id?: string | null; - }[] - | null; - updatedAt: string; - createdAt: string; -} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "preistraeger". @@ -2828,6 +2544,46 @@ export interface Preistraeger { createdAt: string; _status?: ('draft' | 'published') | null; } +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "partners". + */ +export interface Partner { + id: number; + name: string; + /** + * Stable machine-readable key used when migrating or matching partner records. + */ + stableId?: string | null; + role: 'Hauptsponsor' | 'Sponsor' | 'Finanzpartner' | 'Partner' | 'Medienpartner'; + tier: number; + /** + * Lower numbers appear earlier on partner surfaces. + */ + sortOrder?: number | null; + active?: boolean | null; + showOnHomepage?: boolean | null; + /** + * Preferred real partner logo. Styled logo fallback fields below are used when this is empty. + */ + logo?: (number | null) | Media; + logoAlt?: string | null; + logoKind?: ('text' | 'serif' | 'badge' | 'monogram' | 'dot' | 'leaf' | 'rsm' | 'deutschebank') | null; + logoText?: string | null; + logoSubtext?: string | null; + logoColor?: string | null; + desc?: string | null; + fullDesc?: string | null; + industry?: string | null; + location?: string | null; + website?: string | null; + linkedin?: string | null; + heroImg?: string | null; + publishedAt?: string | null; + updatedAt: string; + createdAt: string; + _status?: ('draft' | 'published') | null; +} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "events". @@ -2960,80 +2716,6 @@ export interface Event { createdAt: string; _status?: ('draft' | 'published') | null; } -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "redirects". - */ -export interface Redirect { - id: number; - /** - * You will need to rebuild the website when changing this field. - */ - from: string; - to?: { - type?: ('reference' | 'custom') | null; - reference?: - | ({ - relationTo: 'pages'; - value: number | Page; - } | null) - | ({ - relationTo: 'posts'; - value: number | Post; - } | null); - url?: string | null; - }; - updatedAt: string; - createdAt: string; -} -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "form-submissions". - */ -export interface FormSubmission { - id: number; - form: number | Form; - submissionData?: - | { - field: string; - value: string; - id?: string | null; - }[] - | null; - updatedAt: string; - createdAt: string; -} -/** - * This is a collection of automatically created search results. These results are used by the global site search and will be updated automatically as documents in the CMS are created or updated. - * - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "search". - */ -export interface Search { - id: number; - title?: string | null; - priority?: number | null; - doc: { - relationTo: 'posts'; - value: number | Post; - }; - slug?: string | null; - meta?: { - title?: string | null; - description?: string | null; - image?: (number | null) | Media; - }; - categories?: - | { - relationTo?: string | null; - categoryID?: string | null; - title?: string | null; - id?: string | null; - }[] - | null; - updatedAt: string; - createdAt: string; -} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-kv". @@ -3154,6 +2836,14 @@ export interface PayloadLockedDocument { relationTo: 'pages'; value: number | Page; } | null) + | ({ + relationTo: 'preistraeger'; + value: number | Preistraeger; + } | null) + | ({ + relationTo: 'partners'; + value: number | Partner; + } | null) | ({ relationTo: 'posts'; value: number | Post; @@ -3162,38 +2852,14 @@ export interface PayloadLockedDocument { relationTo: 'events'; value: number | Event; } | null) - | ({ - relationTo: 'preistraeger'; - value: number | Preistraeger; - } | null) | ({ relationTo: 'media'; value: number | Media; } | null) - | ({ - relationTo: 'categories'; - value: number | Category; - } | null) | ({ relationTo: 'users'; value: number | User; } | null) - | ({ - relationTo: 'redirects'; - value: number | Redirect; - } | null) - | ({ - relationTo: 'forms'; - value: number | Form; - } | null) - | ({ - relationTo: 'form-submissions'; - value: number | FormSubmission; - } | null) - | ({ - relationTo: 'search'; - value: number | Search; - } | null) | ({ relationTo: 'payload-folders'; value: number | FolderInterface; @@ -3274,8 +2940,6 @@ export interface PagesSelect { cta?: T | CallToActionBlockSelect; content?: T | ContentBlockSelect; mediaBlock?: T | MediaBlockSelect; - archive?: T | ArchiveBlockSelect; - formBlock?: T | FormBlockSelect; }; home?: | T @@ -4627,26 +4291,6 @@ export interface PagesSelect { footerTitle?: T; footerRolePrefix?: T; }; - items?: - | T - | { - stableId?: T; - name?: T; - role?: T; - tier?: T; - desc?: T; - fullDesc?: T; - logoKind?: T; - logoText?: T; - logoSubtext?: T; - logoColor?: T; - industry?: T; - location?: T; - website?: T; - linkedin?: T; - heroImg?: T; - id?: T; - }; }; sponsoring?: | T @@ -4958,28 +4602,127 @@ export interface MediaBlockSelect { } /** * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "ArchiveBlock_select". + * via the `definition` "preistraeger_select". */ -export interface ArchiveBlockSelect { - introContent?: T; - populateBy?: T; - relationTo?: T; - categories?: T; - limit?: T; - selectedDocs?: T; - id?: T; - blockName?: T; +export interface PreistraegerSelect { + title?: T; + image?: T; + category?: T; + year?: T; + awardType?: T; + shortDesc?: T; + longDesc?: T; + description?: T; + quote?: T; + quotePerson?: T; + quoteRole?: T; + location?: T; + industry?: T; + website?: T; + hasMedia?: T; + detailPage?: + | T + | { + fallbackImage?: T; + breadcrumb?: + | T + | { + url?: T; + label?: T; + }; + fallbackWinner?: + | T + | { + name?: T; + category?: T; + awardType?: T; + longDesc?: T; + quote?: T; + quotePerson?: T; + quoteRole?: T; + location?: T; + industry?: T; + }; + sections?: + | T + | { + companyHeading?: T; + juryHeading?: T; + juryTextBeforeName?: T; + juryTextAfterNameBeforeCategory?: T; + juryTextAfterCategory?: T; + }; + sideImage?: + | T + | { + image?: T; + imageAlt?: T; + }; + facts?: + | T + | { + heading?: T; + categoryLabel?: T; + awardLabel?: T; + yearLabel?: T; + locationLabel?: T; + industryLabel?: T; + }; + websiteCta?: + | T + | { + label?: T; + }; + backLink?: + | T + | { + url?: T; + label?: T; + }; + }; + spaPath?: T; + publishedAt?: T; + meta?: + | T + | { + title?: T; + description?: T; + }; + generateSlug?: T; + slug?: T; + updatedAt?: T; + createdAt?: T; + _status?: T; } /** * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "FormBlock_select". + * via the `definition` "partners_select". */ -export interface FormBlockSelect { - form?: T; - enableIntro?: T; - introContent?: T; - id?: T; - blockName?: T; +export interface PartnersSelect { + name?: T; + stableId?: T; + role?: T; + tier?: T; + sortOrder?: T; + active?: T; + showOnHomepage?: T; + logo?: T; + logoAlt?: T; + logoKind?: T; + logoText?: T; + logoSubtext?: T; + logoColor?: T; + desc?: T; + fullDesc?: T; + industry?: T; + location?: T; + website?: T; + linkedin?: T; + heroImg?: T; + publishedAt?: T; + updatedAt?: T; + createdAt?: T; + _status?: T; } /** * This interface was referenced by `Config`'s JSON-Schema @@ -5065,7 +4808,6 @@ export interface PostsSelect { }; content?: T; relatedPosts?: T; - categories?: T; meta?: | T | { @@ -5198,100 +4940,6 @@ export interface EventsSelect { createdAt?: T; _status?: T; } -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "preistraeger_select". - */ -export interface PreistraegerSelect { - title?: T; - image?: T; - category?: T; - year?: T; - awardType?: T; - shortDesc?: T; - longDesc?: T; - description?: T; - quote?: T; - quotePerson?: T; - quoteRole?: T; - location?: T; - industry?: T; - website?: T; - hasMedia?: T; - detailPage?: - | T - | { - fallbackImage?: T; - breadcrumb?: - | T - | { - url?: T; - label?: T; - }; - fallbackWinner?: - | T - | { - name?: T; - category?: T; - awardType?: T; - longDesc?: T; - quote?: T; - quotePerson?: T; - quoteRole?: T; - location?: T; - industry?: T; - }; - sections?: - | T - | { - companyHeading?: T; - juryHeading?: T; - juryTextBeforeName?: T; - juryTextAfterNameBeforeCategory?: T; - juryTextAfterCategory?: T; - }; - sideImage?: - | T - | { - image?: T; - imageAlt?: T; - }; - facts?: - | T - | { - heading?: T; - categoryLabel?: T; - awardLabel?: T; - yearLabel?: T; - locationLabel?: T; - industryLabel?: T; - }; - websiteCta?: - | T - | { - label?: T; - }; - backLink?: - | T - | { - url?: T; - label?: T; - }; - }; - spaPath?: T; - publishedAt?: T; - meta?: - | T - | { - title?: T; - description?: T; - }; - generateSlug?: T; - slug?: T; - updatedAt?: T; - createdAt?: T; - _status?: T; -} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "media_select". @@ -5386,26 +5034,6 @@ export interface MediaSelect { }; }; } -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "categories_select". - */ -export interface CategoriesSelect { - title?: T; - generateSlug?: T; - slug?: T; - parent?: T; - breadcrumbs?: - | T - | { - doc?: T; - url?: T; - label?: T; - id?: T; - }; - updatedAt?: T; - createdAt?: T; -} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "users_select". @@ -5429,198 +5057,6 @@ export interface UsersSelect { expiresAt?: T; }; } -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "redirects_select". - */ -export interface RedirectsSelect { - from?: T; - to?: - | T - | { - type?: T; - reference?: T; - url?: T; - }; - updatedAt?: T; - createdAt?: T; -} -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "forms_select". - */ -export interface FormsSelect { - title?: T; - fields?: - | T - | { - checkbox?: - | T - | { - name?: T; - label?: T; - width?: T; - required?: T; - defaultValue?: T; - id?: T; - blockName?: T; - }; - country?: - | T - | { - name?: T; - label?: T; - width?: T; - required?: T; - id?: T; - blockName?: T; - }; - email?: - | T - | { - name?: T; - label?: T; - width?: T; - required?: T; - id?: T; - blockName?: T; - }; - message?: - | T - | { - message?: T; - id?: T; - blockName?: T; - }; - number?: - | T - | { - name?: T; - label?: T; - width?: T; - defaultValue?: T; - required?: T; - id?: T; - blockName?: T; - }; - select?: - | T - | { - name?: T; - label?: T; - width?: T; - defaultValue?: T; - placeholder?: T; - options?: - | T - | { - label?: T; - value?: T; - id?: T; - }; - required?: T; - id?: T; - blockName?: T; - }; - state?: - | T - | { - name?: T; - label?: T; - width?: T; - required?: T; - id?: T; - blockName?: T; - }; - text?: - | T - | { - name?: T; - label?: T; - width?: T; - defaultValue?: T; - required?: T; - id?: T; - blockName?: T; - }; - textarea?: - | T - | { - name?: T; - label?: T; - width?: T; - defaultValue?: T; - required?: T; - id?: T; - blockName?: T; - }; - }; - submitButtonLabel?: T; - confirmationType?: T; - confirmationMessage?: T; - redirect?: - | T - | { - url?: T; - }; - emails?: - | T - | { - emailTo?: T; - cc?: T; - bcc?: T; - replyTo?: T; - emailFrom?: T; - subject?: T; - message?: T; - id?: T; - }; - updatedAt?: T; - createdAt?: T; -} -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "form-submissions_select". - */ -export interface FormSubmissionsSelect { - form?: T; - submissionData?: - | T - | { - field?: T; - value?: T; - id?: T; - }; - updatedAt?: T; - createdAt?: T; -} -/** - * This interface was referenced by `Config`'s JSON-Schema - * via the `definition` "search_select". - */ -export interface SearchSelect { - title?: T; - priority?: T; - doc?: T; - slug?: T; - meta?: - | T - | { - title?: T; - description?: T; - image?: T; - }; - categories?: - | T - | { - relationTo?: T; - categoryID?: T; - title?: T; - id?: T; - }; - updatedAt?: T; - createdAt?: T; -} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-kv_select". @@ -6072,6 +5508,14 @@ export interface TaskSchedulePublish { relationTo: 'pages'; value: number | Page; } | null) + | ({ + relationTo: 'preistraeger'; + value: number | Preistraeger; + } | null) + | ({ + relationTo: 'partners'; + value: number | Partner; + } | null) | ({ relationTo: 'posts'; value: number | Post; @@ -6079,10 +5523,6 @@ export interface TaskSchedulePublish { | ({ relationTo: 'events'; value: number | Event; - } | null) - | ({ - relationTo: 'preistraeger'; - value: number | Preistraeger; } | null); global?: string | null; user?: (number | null) | User; diff --git a/src/payload.config.ts b/src/payload.config.ts index 3b6c8b7..bd4baa5 100644 --- a/src/payload.config.ts +++ b/src/payload.config.ts @@ -4,10 +4,10 @@ import path from 'path' import { buildConfig, PayloadRequest } from 'payload' import { fileURLToPath } from 'url' -import { Categories } from './collections/Categories' import { Events } from './collections/Events' import { Media } from './collections/Media' import { Pages } from './collections/Pages' +import { Partners } from './collections/Partners' import { Posts } from './collections/Posts' import { Preistraeger } from './collections/Preistraeger' import { Users } from './collections/Users' @@ -66,7 +66,7 @@ export default buildConfig({ url: process.env.DATABASE_URL || '', }, }), - collections: [Pages, Posts, Events, Preistraeger, Media, Categories, Users], + collections: [Pages, Preistraeger, Partners, Posts, Events, Media, Users], cors: [getServerSideURL()].filter(Boolean), globals: [Header, Footer, SiteSettings, ApplicationPhase], plugins, diff --git a/src/plugins/index.ts b/src/plugins/index.ts index 23cb672..353e535 100644 --- a/src/plugins/index.ts +++ b/src/plugins/index.ts @@ -1,20 +1,14 @@ -import { formBuilderPlugin } from '@payloadcms/plugin-form-builder' -import { nestedDocsPlugin } from '@payloadcms/plugin-nested-docs' -import { redirectsPlugin } from '@payloadcms/plugin-redirects' import { seoPlugin } from '@payloadcms/plugin-seo' -import { searchPlugin } from '@payloadcms/plugin-search' import { Plugin } from 'payload' -import { revalidateRedirects } from '@/hooks/revalidateRedirects' import { GenerateTitle, GenerateURL } from '@payloadcms/plugin-seo/types' -import { FixedToolbarFeature, HeadingFeature, lexicalEditor } from '@payloadcms/richtext-lexical' -import { searchFields } from '@/search/fieldOverrides' -import { beforeSyncWithSearch } from '@/search/beforeSync' import { Page, Post } from '@/payload-types' import { getServerSideURL } from '@/utilities/getURL' +const siteName = 'Bayerischer Mittelstandspreis' + const generateTitle: GenerateTitle = ({ doc }) => { - return doc?.title ? `${doc.title} | Payload Website Template` : 'Payload Website Template' + return doc?.title ? `${doc.title} | ${siteName}` : siteName } const generateURL: GenerateURL = ({ doc }) => { @@ -24,69 +18,8 @@ const generateURL: GenerateURL = ({ doc }) => { } export const plugins: Plugin[] = [ - redirectsPlugin({ - collections: ['pages', 'posts'], - overrides: { - // @ts-expect-error - This is a valid override, mapped fields don't resolve to the same type - fields: ({ defaultFields }) => { - return defaultFields.map((field) => { - if ('name' in field && field.name === 'from') { - return { - ...field, - admin: { - description: 'You will need to rebuild the website when changing this field.', - }, - } - } - return field - }) - }, - hooks: { - afterChange: [revalidateRedirects], - }, - }, - }), - nestedDocsPlugin({ - collections: ['categories'], - generateURL: (docs) => docs.reduce((url, doc) => `${url}/${doc.slug}`, ''), - }), seoPlugin({ generateTitle, generateURL, }), - formBuilderPlugin({ - fields: { - payment: false, - }, - formOverrides: { - fields: ({ defaultFields }) => { - return defaultFields.map((field) => { - if ('name' in field && field.name === 'confirmationMessage') { - return { - ...field, - editor: lexicalEditor({ - features: ({ rootFeatures }) => { - return [ - ...rootFeatures, - FixedToolbarFeature(), - HeadingFeature({ enabledHeadingSizes: ['h1', 'h2', 'h3', 'h4'] }), - ] - }, - }), - } - } - return field - }) - }, - }, - }), - searchPlugin({ - collections: ['posts'], - beforeSync: beforeSyncWithSearch, - searchOverrides: { - fields: ({ defaultFields }) => { - return [...defaultFields, ...searchFields] - }, - }, - }), ] diff --git a/src/scripts/migrate-spa-pages.ts b/src/scripts/migrate-spa-pages.ts index 6ef6a74..1b2ee82 100644 --- a/src/scripts/migrate-spa-pages.ts +++ b/src/scripts/migrate-spa-pages.ts @@ -125,7 +125,6 @@ function postData(page: SpaPageRegistryEntry, mediaMap: MediaMap) { `Dieser Presseartikel wird aktuell noch von der migrierten SPA gerendert. Über „Preview“ kann der aktuelle Stand unter ${page.path} betrachtet werden.`, ), relatedPosts: [], - categories: [], authors: [], } } diff --git a/src/scripts/preload-netzwerk-page-cms.ts b/src/scripts/preload-netzwerk-page-cms.ts index 4264fa2..6ed87e5 100644 --- a/src/scripts/preload-netzwerk-page-cms.ts +++ b/src/scripts/preload-netzwerk-page-cms.ts @@ -30,11 +30,52 @@ const itemsWithImageUploads = async (payload: Payl }), ) -const partnersForPayload = netzwerkContent.partners.items.map(({ id, ...partner }) => ({ +const partnersForPayload = netzwerkContent.partners.items.map(({ id, ...partner }, index) => ({ ...partner, stableId: id, + active: true, + showOnHomepage: true, + sortOrder: index, + _status: 'published' as const, })) +async function upsertPartners(payload: Payload) { + await Promise.all( + partnersForPayload.map(async (partner) => { + const existing = await payload.find({ + collection: 'partners', + limit: 1, + pagination: false, + draft: true, + overrideAccess: true, + where: { + stableId: { equals: partner.stableId }, + }, + }) + + const doc = existing.docs[0] + + if (doc) { + await payload.update({ + collection: 'partners', + id: doc.id, + overrideAccess: true, + context: { disableRevalidate: true }, + data: partner as never, + }) + return + } + + await payload.create({ + collection: 'partners', + overrideAccess: true, + context: { disableRevalidate: true }, + data: partner as never, + }) + }), + ) +} + async function main() { const payload = await getPayload({ config }) @@ -56,6 +97,7 @@ async function main() { const sponsoringImage = await mediaByFilename(payload, netzwerkContent.sponsoring.imageFilename) const { imageFilename: _heroFilename, ...heroContent } = netzwerkContent.hero const { imageFilename: _sponsoringFilename, ...sponsoringContent } = netzwerkContent.sponsoring + const { items: _partnerItems, ...partnerSectionContent } = netzwerkContent.partners const [patronPeople, juryMembers] = await Promise.all([ itemsWithImageUploads(payload, netzwerkContent.patronage.people), itemsWithImageUploads(payload, netzwerkContent.jury.members), @@ -86,13 +128,14 @@ async function main() { image: sponsoringImage, }, partners: { - ...netzwerkContent.partners, - items: partnersForPayload, + ...partnerSectionContent, }, }, } as never, }) + await upsertPartners(payload) + payload.logger.info(`Preloaded Netzwerk CMS fields for page ${page.id}`) process.exit(0) } diff --git a/src/scripts/preload-participation-awards-cms.ts b/src/scripts/preload-participation-awards-cms.ts index 1b9b7cf..69cc3fc 100644 --- a/src/scripts/preload-participation-awards-cms.ts +++ b/src/scripts/preload-participation-awards-cms.ts @@ -132,7 +132,6 @@ async function upsertAwardPosts(payload: Payload, mediaIds: Map { - const [value, setValue] = useState('') - const router = useRouter() - - const debouncedValue = useDebounce(value) - - useEffect(() => { - router.push(`/search${debouncedValue ? `?q=${debouncedValue}` : ''}`) - }, [debouncedValue, router]) - - return ( -
-
{ - e.preventDefault() - }} - > - - { - setValue(event.target.value) - }} - placeholder="Search" - /> - -
-
- ) -} diff --git a/src/search/beforeSync.ts b/src/search/beforeSync.ts deleted file mode 100644 index 2d9c7be..0000000 --- a/src/search/beforeSync.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { BeforeSync, DocToSync } from '@payloadcms/plugin-search/types' - -export const beforeSyncWithSearch: BeforeSync = async ({ req, originalDoc, searchDoc }) => { - const { - doc: { relationTo: collection }, - } = searchDoc - - const { slug, id, categories, title, meta } = originalDoc - - const modifiedDoc: DocToSync = { - ...searchDoc, - slug, - meta: { - ...meta, - title: meta?.title || title, - image: meta?.image?.id || meta?.image, - description: meta?.description, - }, - categories: [], - } - - if (categories && Array.isArray(categories) && categories.length > 0) { - const populatedCategories: { id: string | number; title: string }[] = [] - for (const category of categories) { - if (!category) { - continue - } - - if (typeof category === 'object') { - populatedCategories.push(category) - continue - } - - const doc = await req.payload.findByID({ - collection: 'categories', - id: category, - disableErrors: true, - depth: 0, - select: { title: true }, - req, - }) - - if (doc !== null) { - populatedCategories.push(doc) - } else { - console.error( - `Failed. Category not found when syncing collection '${collection}' with id: '${id}' to search.`, - ) - } - } - - modifiedDoc.categories = populatedCategories.map((each) => ({ - relationTo: 'categories', - categoryID: String(each.id), - title: each.title, - })) - } - - return modifiedDoc -} diff --git a/src/search/fieldOverrides.ts b/src/search/fieldOverrides.ts deleted file mode 100644 index 14f81fd..0000000 --- a/src/search/fieldOverrides.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { Field } from 'payload' - -export const searchFields: Field[] = [ - { - name: 'slug', - type: 'text', - index: true, - admin: { - readOnly: true, - }, - }, - { - name: 'meta', - label: 'Meta', - type: 'group', - index: true, - admin: { - readOnly: true, - }, - fields: [ - { - type: 'text', - name: 'title', - label: 'Title', - }, - { - type: 'text', - name: 'description', - label: 'Description', - }, - { - name: 'image', - label: 'Image', - type: 'upload', - relationTo: 'media', - }, - ], - }, - { - label: 'Categories', - name: 'categories', - type: 'array', - admin: { - readOnly: true, - }, - fields: [ - { - name: 'relationTo', - type: 'text', - }, - { - name: 'categoryID', - type: 'text', - }, - { - name: 'title', - type: 'text', - }, - ], - }, -] diff --git a/src/spa/cmsRoute.tsx b/src/spa/cmsRoute.tsx index 7b907ca..d877f99 100644 --- a/src/spa/cmsRoute.tsx +++ b/src/spa/cmsRoute.tsx @@ -5,7 +5,7 @@ import React, { createContext, useContext } from 'react' import type { SpaApplicationPhaseData } from '@/spa/applicationPhase' import type { SpaSiteSettingsData } from '@/spa/siteSettings' -export type CmsRouteCollection = 'pages' | 'posts' | 'events' | 'preistraeger' +export type CmsRouteCollection = 'pages' | 'posts' | 'events' | 'preistraeger' | 'partners' export type CmsRouteDoc = { id: number | string diff --git a/src/spa/components/ui/partner-logo.tsx b/src/spa/components/ui/partner-logo.tsx new file mode 100644 index 0000000..42bf832 --- /dev/null +++ b/src/spa/components/ui/partner-logo.tsx @@ -0,0 +1,155 @@ +import React from 'react' + +import { mediaAlt, mediaUrl } from '@/spa/cmsMediaField' +import Image from '@/spa/components/ui/UnoptimizedImage' + +const FF = '"IBM Plex Sans", sans-serif' +const FB = '"Inter", sans-serif' + +export type PartnerLogoData = { + id?: string | number | null + stableId?: string | null + name?: string | null + logo?: unknown + logoAlt?: string | null + logoKind?: 'text' | 'serif' | 'badge' | 'monogram' | 'dot' | 'leaf' | 'rsm' | 'deutschebank' | null + logoText?: string | null + logoSubtext?: string | null + logoColor?: string | null + sortOrder?: number | null + active?: boolean | null + showOnHomepage?: boolean | null +} + +const fallbackText = (value: unknown, fallback: string) => + typeof value === 'string' && value.length > 0 ? value : fallback + +const logoShellStyle: React.CSSProperties = { + alignItems: 'center', + display: 'flex', + height: '100%', + justifyContent: 'center', + maxHeight: '100%', + minWidth: 0, + width: '100%', +} + +const containedTextStyle: React.CSSProperties = { + minWidth: 0, + whiteSpace: 'nowrap', +} + +const fittedTextSize = (text: string, preferred: number, compact = 12) => { + if (text.length > 18) return compact - 1 + if (text.length > 13) return compact + if (text.length > 9) return Math.max(compact + 1, preferred - 3) + return preferred +} + +export function PartnerLogoMark({ + partner, + defaultLogoColor = '#111D55', +}: { + partner: PartnerLogoData + defaultLogoColor?: string +}) { + const realLogo = mediaUrl(partner.logo, '') + const alt = mediaAlt(partner.logo, fallbackText(partner.logoAlt, fallbackText(partner.name, 'Partner logo'))) + + if (realLogo) { + return ( + + {alt} + + ) + } + + const color = fallbackText(partner.logoColor, defaultLogoColor) + const text = fallbackText(partner.logoText, fallbackText(partner.name, 'Partner')) + const subtext = fallbackText(partner.logoSubtext, '') + const textSize = fittedTextSize(text, partner.logoKind === 'serif' ? 21 : 16) + + if (partner.logoKind === 'badge') { + return ( + + + {text.split('\n').map((line, index) => ( + {index > 0 &&
}{line}
+ ))} +
+
+ ) + } + + if (partner.logoKind === 'monogram') { + return ( + + + {subtext || text.slice(0, 2)} + {text} + + + ) + } + + if (partner.logoKind === 'dot') { + return ( + + + + {text} + + + ) + } + + if (partner.logoKind === 'leaf') { + return ( + + + + {text} + + + ) + } + + if (partner.logoKind === 'rsm') { + return ( + + + + + + + + {text} {subtext && {subtext}} + + + ) + } + + if (partner.logoKind === 'deutschebank') { + return ( + + + + {text} + + + ) + } + + return ( + + + {text} + + + ) +} diff --git a/src/spa/components/ui/partner-ticker.tsx b/src/spa/components/ui/partner-ticker.tsx index c642156..c530581 100644 --- a/src/spa/components/ui/partner-ticker.tsx +++ b/src/spa/components/ui/partner-ticker.tsx @@ -30,9 +30,8 @@ export function PartnerTicker({ logos }: PartnerTickerProps) { padding: '0 24px', color: '#fff', fontFamily: '"IBM Plex Sans", sans-serif', - textTransform: 'uppercase', whiteSpace: 'nowrap', - width: 140, + width: 260, flexShrink: 0, textAlign: 'center', }} diff --git a/src/spa/pages/Home.tsx b/src/spa/pages/Home.tsx index fe113dd..1d87e7f 100644 --- a/src/spa/pages/Home.tsx +++ b/src/spa/pages/Home.tsx @@ -13,6 +13,8 @@ import type { SpaApplicationPhaseData, SpaApplicationPhaseItem } from '@/spa/app import { useApplicationPhase, useCmsCollection, useCmsRoute } from '@/spa/cmsRoute' import { mediaAlt, mediaUrl } from '@/spa/cmsMediaField' import { homeContent } from '@/spa/homeContent' +import { netzwerkContent } from '@/spa/netzwerkContent' +import { PartnerLogoMark, type PartnerLogoData } from '@/spa/components/ui/partner-logo' const FF = '"IBM Plex Sans", sans-serif'; @@ -84,6 +86,9 @@ type HomeCms = { videoModal?: HomeVideoModalCms; winners?: HomeSectionCms; }; +type NetzwerkPartnersCms = { + defaultLogoColor?: string | null; +}; type RenderedStatusPhase = Omit & { accent: string; bg: string; @@ -121,16 +126,39 @@ function Lines({ text }: { text: string }) { return <>{text.split('\n').map((line, i) => {i > 0 &&
}{line}
)}; } -function partnerLogos(partners: unknown) { - return fallbackArray(partners, homeContent.hero.partners).map((partner) => { - const item = partner as { id?: string; name?: string; label?: React.ReactNode }; - return item.label - ? { id: item.id || String(item.name || ''), label: item.label } - : { - id: item.id || String(item.name || ''), - label: {item.name}, - }; - }); +const isNetzwerkPage = (page: CmsRecord) => + page.spaPath === '/netzwerk' || page.slug === 'netzwerk' || page.slug === 'network' + +function partnerLogos(partners: PartnerLogoData[], defaultLogoColor: string) { + return partners.map((partner, index) => ({ + id: String(partner.stableId || partner.id || partner.name || index), + label: ( + + + + ), + })); +} + +function sortedPartners(partners: T[]) { + return partners + .map((partner, index) => ({ partner, index })) + .sort((a, b) => Number(a.partner.sortOrder ?? a.index) - Number(b.partner.sortOrder ?? b.index)) + .map(({ partner }) => partner); } function HomeWinnerCard({ @@ -187,6 +215,20 @@ const Home: React.FC = () => { const videoRef = useRef(null); const isMobile = useIsMobile(); const home = (useCmsRoute()?.doc?.home || {}) as HomeCms; + const netzwerkPage = useCmsCollection('pages').find((page) => isNetzwerkPage(page as CmsRecord)) as + | ({ netzwerk?: { partners?: NetzwerkPartnersCms } } & CmsRecord) + | undefined; + const partnerSection = netzwerkPage?.netzwerk?.partners; + const defaultLogoColor = fallbackText(partnerSection?.defaultLogoColor, netzwerkContent.partners.defaultLogoColor); + const cmsPartners = useCmsCollection('partners') as PartnerLogoData[]; + const partnerSource = cmsPartners.length ? cmsPartners : (netzwerkContent.partners.items as PartnerLogoData[]); + const networkPartners = sortedPartners(partnerSource) + .filter((partner) => partner.active !== false && partner.showOnHomepage !== false) + .map((partner) => ({ + ...partner, + id: partner.stableId || partner.id, + logoColor: fallbackText(partner.logoColor, defaultLogoColor), + })); const hero = home.hero || {}; const quickCheck = home.quickCheck || {}; const intro = home.intro || {}; @@ -301,11 +343,11 @@ const Home: React.FC = () => {
{/* Left: label – stays put */} {fallbackText(hero.partnersLabel, homeContent.hero.partnersLabel)} - {/* Right: ticker – fixed window, exactly 4 logos wide */} + {/* Right: ticker window */}
-
- +
+
diff --git a/src/spa/pages/Netzwerk.tsx b/src/spa/pages/Netzwerk.tsx index 3e5b893..8d15567 100644 --- a/src/spa/pages/Netzwerk.tsx +++ b/src/spa/pages/Netzwerk.tsx @@ -9,6 +9,7 @@ import { mediaAlt, mediaUrl } from '@/spa/cmsMediaField'; import { homeContent } from '@/spa/homeContent'; import { netzwerkContent } from '@/spa/netzwerkContent'; import Image from '@/spa/components/ui/UnoptimizedImage' +import { PartnerLogoMark, type PartnerLogoData } from '@/spa/components/ui/partner-logo'; const FF = '"IBM Plex Sans", sans-serif'; const FB = '"Inter", sans-serif'; @@ -44,7 +45,17 @@ type HomeVideoCms = { type PatronPerson = (typeof netzwerkContent.patronage.people)[number] & { imageUpload?: unknown } type JuryMember = (typeof netzwerkContent.jury.members)[number] & { imageUpload?: unknown } -type Partner = (typeof netzwerkContent.partners.items)[number] & { stableId?: string; tier: 1 | 2 | 3; heroImg?: string; linkedin?: string; logoSubtext?: string } +type Partner = (typeof netzwerkContent.partners.items)[number] & + PartnerLogoData & { + active?: boolean | null + heroImg?: string + linkedin?: string + logoSubtext?: string + showOnHomepage?: boolean | null + sortOrder?: number | null + stableId?: string | null + tier: 1 | 2 | 3 + } type PartnerTier = (typeof netzwerkContent.partners.tiers)[number] type ExpertiseRow = (typeof netzwerkContent.expertise.rows)[number] type StatItem = (typeof netzwerkContent.juryIntro.stats)[number] @@ -54,6 +65,11 @@ type PartnerModalCopy = typeof netzwerkContent.partners.modal const fallbackText = (value: unknown, fallback: string) => typeof value === 'string' && value.length > 0 ? value : fallback; const fallbackArray = (value: unknown, fallback: T[]) => Array.isArray(value) && value.length ? value as T[] : fallback; const managedImage = (upload: unknown, fallback: unknown) => mediaUrl(upload, fallbackText(fallback, '')) +const sortedPartners = (partners: T[]) => + partners + .map((partner, index) => ({ partner, index })) + .sort((a, b) => Number(a.partner.sortOrder ?? a.index) - Number(b.partner.sortOrder ?? b.index)) + .map(({ partner }) => partner) const isMembershipCta = (cta?: { label?: string | null; url?: string | null } | null) => { const normalizedLabel = cta?.label?.trim().toLowerCase(); @@ -185,38 +201,6 @@ const JuryChairCard: React.FC<{ member: JuryMember; badge: string }> = ({ member // ── SponsorCell (tiered) ────────────────────────────────────────────────────── -function PartnerLogo({ partner }: { partner: Partner }) { - const color = fallbackText(partner.logoColor, netzwerkContent.partners.defaultLogoColor); - const text = fallbackText(partner.logoText, partner.name); - const subtext = fallbackText(partner.logoSubtext, ''); - - if (partner.logoKind === 'badge') { - return {text.split('\n').map((line, index) => {index > 0 &&
}{line}
)}
- } - - if (partner.logoKind === 'monogram') { - return {subtext || text.slice(0, 2)}{text} - } - - if (partner.logoKind === 'dot') { - return {text} - } - - if (partner.logoKind === 'leaf') { - return {text} - } - - if (partner.logoKind === 'rsm') { - return {text} {subtext && {subtext}} - } - - if (partner.logoKind === 'deutschebank') { - return {text} - } - - return {text} -} - const SponsorCell: React.FC<{ partner: Partner; variant: 'lg' | 'md' | 'sm'; idx: number; cols: number; detailLabel: string; premiumLabel: string; onClick: () => void }> = ({ partner, variant, idx, cols, detailLabel, premiumLabel, onClick }) => { const [hovered, setHovered] = useState(false); const isMobileCell = useIsMobile(); @@ -242,7 +226,7 @@ const SponsorCell: React.FC<{ partner: Partner; variant: 'lg' | 'md' | 'sm'; idx {lg && ( {premiumLabel} )} -
+
{partner.name}
{partner.role}
@@ -353,7 +337,7 @@ function PartnerModal({ partner, copy, onClose }: { partner: Partner; copy: Part display: 'flex', alignItems: 'center', justifyContent: 'center', padding: 10, zIndex: 2, }}> - +
@@ -466,6 +450,7 @@ const Netzwerk: React.FC = () => { const greetingVideoRef = useRef(null); const cms = (useCmsRoute()?.doc?.netzwerk || {}) as NetzwerkCms; const homePage = useCmsCollection('pages').find((page) => page.spaPath === '/' || page.slug === 'startseite' || page.slug === 'home'); + const cmsPartners = useCmsCollection('partners') as unknown as Partner[]; const home = (homePage?.home || {}) as HomeVideoCms; const homeVideoModal = home.videoModal || {}; const hero = { ...netzwerkContent.hero, ...(cms.hero || {}) }; @@ -480,11 +465,14 @@ const Netzwerk: React.FC = () => { const juryMembers = fallbackArray(jury.members, netzwerkContent.jury.members); const expertiseRows = fallbackArray(expertise.rows, netzwerkContent.expertise.rows); const defaultLogoColor = fallbackText(partnerSection.defaultLogoColor, netzwerkContent.partners.defaultLogoColor); - const partners = fallbackArray(partnerSection.items, netzwerkContent.partners.items as Partner[]).map((partner) => ({ - ...partner, - id: partner.stableId || partner.id, - logoColor: fallbackText(partner.logoColor, defaultLogoColor), - })); + const partnerSource = cmsPartners.length ? cmsPartners : (netzwerkContent.partners.items as Partner[]); + const partners = sortedPartners(partnerSource) + .filter((partner) => partner.active !== false) + .map((partner) => ({ + ...partner, + id: partner.stableId || partner.id, + logoColor: fallbackText(partner.logoColor, defaultLogoColor), + })); const partnerTiers = fallbackArray(partnerSection.tiers, netzwerkContent.partners.tiers); const mobileStats = fallbackArray(juryIntro.stats, netzwerkContent.juryIntro.stats); const desktopStats = fallbackArray(juryIntro.desktopStats, netzwerkContent.juryIntro.desktopStats); diff --git a/src/utilities/generateMeta.ts b/src/utilities/generateMeta.ts index 7395c87..c2e4b30 100644 --- a/src/utilities/generateMeta.ts +++ b/src/utilities/generateMeta.ts @@ -5,6 +5,8 @@ import type { Media, Page, Post, Config } from '../payload-types' import { mergeOpenGraph } from './mergeOpenGraph' import { getServerSideURL } from './getURL' +const siteName = 'Bayerischer Mittelstandspreis' + const getImageURL = (image?: Media | Config['db']['defaultIDType'] | null) => { const serverUrl = getServerSideURL() @@ -26,9 +28,7 @@ export const generateMeta = async (args: { const ogImage = getImageURL(doc?.meta?.image) - const title = doc?.meta?.title - ? doc?.meta?.title + ' | Payload Website Template' - : 'Payload Website Template' + const title = doc?.meta?.title ? doc?.meta?.title + ` | ${siteName}` : siteName return { description: doc?.meta?.description, diff --git a/src/utilities/getRedirects.ts b/src/utilities/getRedirects.ts deleted file mode 100644 index 8eac7f2..0000000 --- a/src/utilities/getRedirects.ts +++ /dev/null @@ -1,26 +0,0 @@ -import configPromise from '@payload-config' -import { getPayload } from 'payload' -import { unstable_cache } from 'next/cache' - -export async function getRedirects(depth = 1) { - const payload = await getPayload({ config: configPromise }) - - const { docs: redirects } = await payload.find({ - collection: 'redirects', - depth, - limit: 0, - pagination: false, - }) - - return redirects -} - -/** - * Returns a unstable_cache function mapped with the cache tag for 'redirects'. - * - * Cache all redirects together to avoid multiple fetches. - */ -export const getCachedRedirects = () => - unstable_cache(async () => getRedirects(), ['redirects'], { - tags: ['redirects'], - }) diff --git a/src/utilities/mergeOpenGraph.ts b/src/utilities/mergeOpenGraph.ts index a331a2a..9b75e66 100644 --- a/src/utilities/mergeOpenGraph.ts +++ b/src/utilities/mergeOpenGraph.ts @@ -1,16 +1,18 @@ import type { Metadata } from 'next' import { getServerSideURL } from './getURL' +const siteName = 'Bayerischer Mittelstandspreis' + const defaultOpenGraph: Metadata['openGraph'] = { type: 'website', - description: 'An open-source website built with Payload and Next.js.', + description: 'Der Preis für herausragenden Mittelstand in Bayern.', images: [ { url: `${getServerSideURL()}/website-template-OG.webp`, }, ], - siteName: 'Payload Website Template', - title: 'Payload Website Template', + siteName, + title: siteName, } export const mergeOpenGraph = (og?: Metadata['openGraph']): Metadata['openGraph'] => {