diff --git a/.env.example b/.env.example index 57bee94..0d25db6 100644 --- a/.env.example +++ b/.env.example @@ -1,8 +1,8 @@ -# Database connection string -DATABASE_URL=mongodb://127.0.0.1/your-database-name +# SQLite database connection string +DATABASE_URL=file:./content.db -# Or use a PG connection string -#DATABASE_URL=postgresql://127.0.0.1:5432/your-database-name +# VPS production example: +# DATABASE_URL=file:/var/www/bmp-website/shared/content.db # Used to encrypt JWT tokens PAYLOAD_SECRET=YOUR_SECRET_HERE diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 99e029a..0000000 --- a/Dockerfile +++ /dev/null @@ -1,71 +0,0 @@ -# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.js file. -# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile - -FROM node:22.17.0-alpine AS base - -# Install dependencies only when needed -FROM base AS deps -# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. -RUN apk add --no-cache libc6-compat -WORKDIR /app - -# Install dependencies based on the preferred package manager -COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ -RUN \ - if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ - elif [ -f package-lock.json ]; then npm ci; \ - elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \ - else echo "Lockfile not found." && exit 1; \ - fi - - -# Rebuild the source code only when needed -FROM base AS builder -WORKDIR /app -COPY --from=deps /app/node_modules ./node_modules -COPY . . - -# Next.js collects completely anonymous telemetry data about general usage. -# Learn more here: https://nextjs.org/telemetry -# Uncomment the following line in case you want to disable telemetry during the build. -# ENV NEXT_TELEMETRY_DISABLED 1 - -RUN \ - if [ -f yarn.lock ]; then yarn run build; \ - elif [ -f package-lock.json ]; then npm run build; \ - elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \ - else echo "Lockfile not found." && exit 1; \ - fi - -# Production image, copy all the files and run next -FROM base AS runner -WORKDIR /app - -ENV NODE_ENV production -# Uncomment the following line in case you want to disable telemetry during runtime. -# ENV NEXT_TELEMETRY_DISABLED 1 - -RUN addgroup --system --gid 1001 nodejs -RUN adduser --system --uid 1001 nextjs - -# Remove this line if you do not have this folder -COPY --from=builder /app/public ./public - -# Set the correct permission for prerender cache -RUN mkdir .next -RUN chown nextjs:nodejs .next - -# Automatically leverage output traces to reduce image size -# https://nextjs.org/docs/advanced-features/output-file-tracing -COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ -COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static - -USER nextjs - -EXPOSE 3000 - -ENV PORT 3000 - -# server.js is created by next build from the standalone output -# https://nextjs.org/docs/pages/api-reference/next-config-js/output -CMD HOSTNAME="0.0.0.0" node server.js diff --git a/README.md b/README.md index 669debe..fa70b4a 100644 --- a/README.md +++ b/README.md @@ -212,16 +212,6 @@ pnpm payload migrate This command will check for any migrations that have not yet been run and try to run them and it will keep a record of migrations that have been run in the database. -### Docker - -Alternatively, you can use [Docker](https://www.docker.com) to spin up this template locally. To do so, follow these steps: - -1. Follow [steps 1 and 2 from above](#development), the docker-compose file will automatically use the `.env` file in your project root -1. Next run `docker-compose up` -1. Follow [steps 4 and 5 from above](#development) to login and create your first admin user - -That's it! The Docker instance will help you get up and running quickly while also standardizing the development environment across your teams. - ### Seed To seed the database with a few pages, posts, and projects you can click the 'seed database' link from the admin panel. @@ -294,7 +284,8 @@ There is also a simplified [one click deploy](https://github.com/payloadcms/payl Before deploying your app, you need to: 1. Ensure your app builds and serves in production. See [Production](#production) for more details. -2. You can then deploy Payload as you would any other Node.js or Next.js application either directly on a VPS, DigitalOcean's Apps Platform, via Coolify or more. More guides coming soon. +2. For VPS hosting without Docker, follow [docs/vps-deployment.md](docs/vps-deployment.md). +3. You can also deploy Payload as you would any other Node.js or Next.js application either directly on a VPS, DigitalOcean's Apps Platform, via Coolify or more. You can also deploy your app manually, check out the [deployment documentation](https://payloadcms.com/docs/production/deployment) for full details. diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 4c9fc51..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,31 +0,0 @@ -version: '3' - -services: - payload: - image: node:18-alpine - ports: - - '3000:3000' - volumes: - - .:/home/node/app - - node_modules:/home/node/app/node_modules - working_dir: /home/node/app/ - command: sh -c "yarn install && yarn dev" - depends_on: - - mongo - env_file: - - .env - - mongo: - image: mongo:latest - ports: - - '27017:27017' - command: - - --storageEngine=wiredTiger - volumes: - - data:/data/db - logging: - driver: none - -volumes: - data: - node_modules: diff --git a/docs/vps-deployment.md b/docs/vps-deployment.md new file mode 100644 index 0000000..74dc9f5 --- /dev/null +++ b/docs/vps-deployment.md @@ -0,0 +1,218 @@ +# VPS deployment + +This project is a Node/Next/Payload application that currently uses: + +- SQLite via `DATABASE_URL` +- local filesystem media in `public/media` +- no Docker + +Treat code and persistent state separately. Git or rsync can move the code, but +the database and media directory must be copied and backed up explicitly. + +## Persistent paths + +Use one stable directory on the VPS: + +```bash +APP_ROOT=/var/www/bmp-website +APP_USER=deploy +``` + +Recommended layout: + +```text +/var/www/bmp-website/ + current/ # synced application code + shared/ + .env # production secrets + content.db # SQLite database + media/ # Payload uploads + backups/ +``` + +Create it on the VPS: + +```bash +sudo mkdir -p "$APP_ROOT"/{current,shared/media,backups} +sudo chown -R "$APP_USER":"$APP_USER" "$APP_ROOT" +``` + +## Production environment + +Create `/var/www/bmp-website/shared/.env` on the VPS: + +```dotenv +DATABASE_URL=file:/var/www/bmp-website/shared/content.db +PAYLOAD_SECRET=replace-with-existing-secret +NEXT_PUBLIC_SERVER_URL=https://example.com +CRON_SECRET=replace-with-existing-secret +PREVIEW_SECRET=replace-with-existing-secret +PORT=3000 +NODE_ENV=production +``` + +Keep `PAYLOAD_SECRET`, `CRON_SECRET`, and `PREVIEW_SECRET` stable once the site +is live. Do not commit the production `.env`. + +`NEXT_PUBLIC_SERVER_URL` is read during the Next build, so set it correctly +before running `npm run build`. + +If you already have the correct local `.env`, transfer it separately from the +application code and lock down its permissions: + +```bash +scp .env "$SSH_TARGET:$APP_ROOT/shared/.env" +ssh "$SSH_TARGET" "chmod 600 $APP_ROOT/shared/.env" +``` + +If you need to package secrets in an archive, make that archive secret-only and +encrypt it before transfer: + +```bash +tar -czf bmp-website-secrets.tar.gz .env +gpg -c bmp-website-secrets.tar.gz +scp bmp-website-secrets.tar.gz.gpg "$SSH_TARGET:$APP_ROOT/shared/" +``` + +Then decrypt it on the VPS, move `.env` into place, and remove the temporary +archive files. + +## Initial transfer + +Run these locally from the repository root. Replace the SSH target and domain +values first. + +```bash +SSH_TARGET=deploy@example.com +APP_ROOT=/var/www/bmp-website +``` + +Stop any local dev server before copying `content.db`. + +Copy persistent state once: + +```bash +rsync -az content.db "$SSH_TARGET:$APP_ROOT/shared/content.db" +rsync -az public/media/ "$SSH_TARGET:$APP_ROOT/shared/media/" +``` + +Copy application code without local state or build output: + +```bash +rsync -az --delete \ + --exclude '.env' \ + --exclude '.next/' \ + --exclude 'node_modules/' \ + --exclude 'content.db' \ + --exclude 'public/media/' \ + ./ "$SSH_TARGET:$APP_ROOT/current/" +``` + +Link the shared media directory into the app: + +```bash +ssh "$SSH_TARGET" "mkdir -p $APP_ROOT/current/public && rm -rf $APP_ROOT/current/public/media && ln -s $APP_ROOT/shared/media $APP_ROOT/current/public/media" +ssh "$SSH_TARGET" "ln -sfn $APP_ROOT/shared/.env $APP_ROOT/current/.env" +``` + +Do not use `--delete` when syncing media unless the source is intentionally the +source of truth and you have a current backup. + +## Build on the VPS + +Install Node.js 22 or another version accepted by `package.json`, then run: + +```bash +cd /var/www/bmp-website/current +npm ci +npm run build +``` + +## systemd service + +Create `/etc/systemd/system/bmp-website.service`: + +```ini +[Unit] +Description=BMP website +After=network.target + +[Service] +Type=simple +User=deploy +Group=deploy +WorkingDirectory=/var/www/bmp-website/current +EnvironmentFile=/var/www/bmp-website/shared/.env +ExecStart=/usr/bin/env npm run start +Restart=always +RestartSec=5 + +[Install] +WantedBy=multi-user.target +``` + +Enable and start it: + +```bash +sudo systemctl daemon-reload +sudo systemctl enable --now bmp-website +sudo systemctl status bmp-website --no-pager +``` + +## nginx reverse proxy + +Example server block: + +```nginx +server { + listen 80; + server_name example.com www.example.com; + + client_max_body_size 25m; + + location / { + proxy_pass http://127.0.0.1:3000; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + } +} +``` + +After enabling the site, issue TLS certificates with your normal ACME client +such as Certbot. + +## Repeat deploys + +Before every deploy, back up the live SQLite database on the VPS: + +```bash +APP_ROOT=/var/www/bmp-website +sqlite3 "$APP_ROOT/shared/content.db" ".backup '$APP_ROOT/backups/content-$(date +%Y%m%d-%H%M%S).db'" +``` + +Then sync code, rebuild, and restart: + +```bash +rsync -az --delete \ + --exclude '.env' \ + --exclude '.next/' \ + --exclude 'node_modules/' \ + --exclude 'content.db' \ + --exclude 'public/media/' \ + ./ "$SSH_TARGET:$APP_ROOT/current/" + +ssh "$SSH_TARGET" "cd $APP_ROOT/current && npm ci && npm run build && sudo systemctl restart bmp-website" +``` + +Verify: + +```bash +ssh "$SSH_TARGET" "systemctl status bmp-website --no-pager" +curl -I https://example.com +curl -I https://example.com/admin +``` diff --git a/package.json b/package.json index 8448f37..4f8d3eb 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "preload:impressum-page-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-impressum-page-cms.ts", "preload:mitglied-werden-page-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-mitglied-werden-page-cms.ts", "preload:netzwerk-page-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-netzwerk-page-cms.ts", + "preload:participation-awards-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-participation-awards-cms.ts", "preload:participation-page-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-participation-page-cms.ts", "preload:preistraeger-detail-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-preistraeger-detail-cms.ts", "preload:preistraeger-index-page-cms": "cross-env NODE_OPTIONS=--no-deprecation tsx src/scripts/preload-preistraeger-index-page-cms.ts", diff --git a/public/images/goldene-bavaria.png b/public/images/goldene-bavaria.png new file mode 100644 index 0000000..86a1821 Binary files /dev/null and b/public/images/goldene-bavaria.png differ diff --git a/public/images/prof-roland-berger.jpg b/public/images/prof-roland-berger.jpg new file mode 100644 index 0000000..3c323e4 Binary files /dev/null and b/public/images/prof-roland-berger.jpg differ diff --git a/src/ApplicationPhase/config.ts b/src/ApplicationPhase/config.ts new file mode 100644 index 0000000..f2f3e22 --- /dev/null +++ b/src/ApplicationPhase/config.ts @@ -0,0 +1,81 @@ +import type { Field, GlobalConfig } from 'payload' + +import { defaultApplicationPhaseData } from '@/spa/applicationPhase' + +const text = (name: string, label: string, defaultValue?: string | null): Field => ({ + name, + type: 'text', + label, + defaultValue: defaultValue || undefined, +}) + +const textarea = (name: string, label: string, defaultValue?: string | null): Field => ({ + name, + type: 'textarea', + label, + defaultValue: defaultValue || undefined, +}) + +const linkGroup = (labelDefault = '', urlDefault = ''): Field[] => [ + text('label', 'Button text', labelDefault), + text('url', 'Link URL', urlDefault), +] + +const phaseFields: Field[] = [ + text('num', 'Phase number'), + text('tag', 'Badge'), + { name: 'pulse', label: 'Show pulse dot', type: 'checkbox', defaultValue: true }, + text('phase', 'Phase label'), + text('headline', 'Headline'), + textarea('body', 'Body copy'), + { name: 'cta', label: 'Primary CTA', type: 'group', fields: linkGroup() }, + text('accent', 'Accent color'), + text('bg', 'Background color'), + text('glow', 'Glow color'), + text('meta', 'Meta label'), + text('successApplications', 'Success applications number'), + text('successWinners', 'Success winners number'), + { + name: 'membershipCta', + label: 'Membership CTA', + type: 'group', + fields: linkGroup('Mitglied werden', '/mitglied-werden'), + }, +] + +export const ApplicationPhase: GlobalConfig = { + slug: 'application-phase', + access: { + read: () => true, + }, + admin: { + group: 'Site Settings', + }, + fields: [ + { + name: 'activePhase', + label: 'Current phase', + type: 'select', + defaultValue: defaultApplicationPhaseData.activePhase, + options: [ + { label: '01 · Bewerbungsphase offen', value: '0' }, + { label: '02 · Auswertung / Jury bewertet', value: '1' }, + { label: '03 · Preisverleihung abgeschlossen', value: '2' }, + ], + admin: { + description: 'Controls phase-dependent frontend rendering across the site.', + }, + }, + { + name: 'phases', + label: 'Phase content', + type: 'array', + maxRows: 3, + defaultValue: defaultApplicationPhaseData.phases, + fields: phaseFields, + }, + text('noActionLabel', 'No CTA fallback label', defaultApplicationPhaseData.noActionLabel), + text('successApplicationsLabel', 'Success applications label', defaultApplicationPhaseData.successApplicationsLabel), + text('successWinnersLabel', 'Success winners label', defaultApplicationPhaseData.successWinnersLabel), + ], +} diff --git a/src/Header/config.ts b/src/Header/config.ts index f73568b..2cf11cd 100644 --- a/src/Header/config.ts +++ b/src/Header/config.ts @@ -51,8 +51,6 @@ export const Header: GlobalConfig = { { name: 'closeLabel', type: 'text', defaultValue: defaultHeaderData.closeLabel, required: true }, { name: 'dialogLabel', type: 'text', defaultValue: defaultHeaderData.dialogLabel, required: true }, { name: 'overviewLabel', type: 'text', defaultValue: defaultHeaderData.overviewLabel, required: true }, - { name: 'loadingBrand', type: 'text', defaultValue: defaultHeaderData.loadingBrand, required: true }, - { name: 'loadingLabel', type: 'text', defaultValue: defaultHeaderData.loadingLabel, required: true }, ], }, { @@ -103,7 +101,7 @@ export const Header: GlobalConfig = { options: [ { label: 'Primary gold button', value: 'primary' }, { label: 'Secondary outline button', value: 'secondary' }, - { label: 'Upload dashed link', value: 'upload' }, + { label: 'Login system link', value: 'login' }, ], }, ], @@ -113,7 +111,7 @@ export const Header: GlobalConfig = { ], }, { - label: 'Social & Language', + label: 'Social', fields: [ { name: 'socialLinks', @@ -122,13 +120,6 @@ export const Header: GlobalConfig = { fields: socialFields, admin: { initCollapsed: true }, }, - { - name: 'languages', - type: 'array', - defaultValue: defaultHeaderData.languages.map((label) => ({ label })), - fields: [{ name: 'label', type: 'text', required: true }], - maxRows: 4, - }, ], }, ], diff --git a/src/app/(frontend)/[[...slug]]/page.tsx b/src/app/(frontend)/[[...slug]]/page.tsx index e78f9f4..876206a 100644 --- a/src/app/(frontend)/[[...slug]]/page.tsx +++ b/src/app/(frontend)/[[...slug]]/page.tsx @@ -5,6 +5,7 @@ import { draftMode } from 'next/headers' 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 { normalizeSiteSettings, type SpaSiteSettingsData } from '@/spa/siteSettings' @@ -69,16 +70,34 @@ async function findList(payload: Awaited>, collect return result.docs } +async function findHomePage(payload: Awaited>, draft: boolean) { + const result = await payload.find({ + collection: 'pages', + depth: 1, + draft, + overrideAccess: draft, + limit: 1, + pagination: false, + where: { + or: [{ spaPath: { equals: '/' } }, { slug: { equals: 'startseite' } }, { slug: { equals: 'home' } }], + }, + }) + + return result.docs[0] +} + export default async function Page({ params }: Args) { const { slug = [] } = await params const pathname = `/${slug.join('/')}`.replace(/\/$/, '') || '/' const payload = await getPayload({ config: configPromise }) const { isEnabled: draft } = await draftMode() - const [header, footer, siteSettings, route, preistraeger, events, posts] = await Promise.all([ + const [header, footer, siteSettings, applicationPhase, route, homePage, preistraeger, events, posts] = 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), findList(payload, 'preistraeger', draft).catch(() => []), findList(payload, 'events', draft).catch(() => []), findList(payload, 'posts', draft).catch(() => []), @@ -92,10 +111,12 @@ export default async function Page({ params }: Args) { header={normalizeHeaderData(header)} footer={normalizeFooterData(footer)} siteSettings={normalizeSiteSettings(siteSettings as Partial | undefined)} + applicationPhase={normalizeApplicationPhaseData(applicationPhase as Partial | undefined)} cmsRoute={{ collection: route.collection, doc: route.doc as unknown as CmsRouteDoc, lists: { + pages: homePage ? [homePage as unknown as CmsRouteDoc] : [], preistraeger: preistraeger as unknown as CmsRouteDoc[], events: events as unknown as CmsRouteDoc[], posts: posts as unknown as CmsRouteDoc[], diff --git a/src/collections/Pages/homeFields.ts b/src/collections/Pages/homeFields.ts index e2d7acb..4f0ec59 100644 --- a/src/collections/Pages/homeFields.ts +++ b/src/collections/Pages/homeFields.ts @@ -103,7 +103,7 @@ export const homeFields: Field[] = [ name: 'quickCheck', label: '02 · Schnell-Check eligibility section', type: 'group', - admin: sectionAdmin('Cream text panel plus right-side stage image and five eligibility rows.'), + admin: sectionAdmin('White text panel plus right-side stage image and five eligibility rows.'), fields: [ text('eyebrow', 'Eyebrow', homeContent.quickCheck.eyebrow), textarea('heading', 'Heading', homeContent.quickCheck.heading), @@ -155,55 +155,9 @@ export const homeFields: Field[] = [ { name: 'cta', label: 'CTA', type: 'group', fields: linkGroup(homeContent.intro.cta.label, homeContent.intro.cta.url) }, ], }, - { - name: 'status', - label: '04 · Application phase slider', - type: 'group', - admin: sectionAdmin('Three-slide status module shown after the award intro.'), - fields: [ - { - name: 'activePhase', - label: 'Current phase shown on the homepage', - type: 'select', - defaultValue: homeContent.status.activePhase, - options: [ - { label: '01 · Bewerbungsphase offen', value: '0' }, - { label: '02 · Auswertung / Jury bewertet', value: '1' }, - { label: '03 · Preisverleihung abgeschlossen', value: '2' }, - ], - admin: { description: 'Only this selected phase is rendered on the frontend; visitors do not see a slider.' }, - }, - { - name: 'phases', - label: 'Slides', - type: 'array', - maxRows: 3, - defaultValue: homeContent.status.phases, - fields: [ - text('num', 'Slide number'), - text('tag', 'Badge'), - { name: 'pulse', label: 'Show pulse dot', type: 'checkbox', defaultValue: true }, - text('phase', 'Phase label'), - text('headline', 'Headline'), - textarea('body', 'Body copy'), - { name: 'cta', label: 'Slide CTA', type: 'group', fields: linkGroup('', '') }, - text('accent', 'Accent color'), - text('bg', 'Background color'), - text('glow', 'Glow color'), - text('meta', 'Meta label'), - text('successApplications', 'Success applications number'), - text('successWinners', 'Success winners number'), - { name: 'membershipCta', label: 'Membership CTA', type: 'group', fields: linkGroup('Mitglied werden', '/mitglied-werden') }, - ], - }, - text('noActionLabel', 'No CTA fallback label', homeContent.status.noActionLabel), - text('successApplicationsLabel', 'Success applications label', homeContent.status.successApplicationsLabel), - text('successWinnersLabel', 'Success winners label', homeContent.status.successWinnersLabel), - ], - }, { name: 'winners', - label: '05 · Preisträger card grid', + label: '04 · Preisträger card grid', type: 'group', admin: sectionAdmin('Blue card grid with featured winner relationships.'), fields: [ @@ -225,7 +179,7 @@ export const homeFields: Field[] = [ }, { name: 'testimonials', - label: '06 · Testimonials carousel', + label: '05 · Testimonials carousel', type: 'group', admin: sectionAdmin('Portrait carousel and quote copy.'), fields: [ @@ -247,9 +201,9 @@ export const homeFields: Field[] = [ }, { name: 'benefits', - label: '07 · Participation benefits', + label: '06 · Participation benefits', type: 'group', - admin: sectionAdmin('Cream left panel and networking image.'), + admin: sectionAdmin('White left panel and networking image.'), fields: [ text('eyebrow', 'Eyebrow', homeContent.benefits.eyebrow), textarea('heading', 'Heading', homeContent.benefits.heading), @@ -263,7 +217,7 @@ export const homeFields: Field[] = [ }, { name: 'application', - label: '08 · Application form section', + label: '07 · Application form section', type: 'group', admin: sectionAdmin('Final application pitch, award image, embedded form heading, and footnote.'), fields: [ @@ -282,7 +236,7 @@ export const homeFields: Field[] = [ }, { name: 'form', - label: '09 · Embedded application form copy and logic labels', + label: '08 · Embedded application form copy and logic labels', type: 'group', admin: sectionAdmin('Text, options, and eligibility thresholds used inside the home page multi-step application form.'), fields: [ @@ -398,10 +352,28 @@ export const homeFields: Field[] = [ }, { name: 'videoModal', - label: '10 · Video modal placeholder', + label: '10 · Video modal', type: 'group', - admin: sectionAdmin('Copy shown when the hero video button is clicked.'), - fields: [text('title', 'Title', homeContent.videoModal.title), text('description', 'Description', homeContent.videoModal.description), text('closeLabel', 'Close button label', homeContent.videoModal.closeLabel)], + admin: sectionAdmin('Video and fallback copy shown when the hero video button is clicked.'), + fields: [ + { + name: 'video', + type: 'upload', + relationTo: 'media', + label: 'Video', + filterOptions: { + mimeType: { + contains: 'video', + }, + }, + admin: { + description: 'Choose a video from the media collection. If empty, the frontend shows the fallback copy below.', + }, + }, + text('title', 'Title', homeContent.videoModal.title), + text('description', 'Description', homeContent.videoModal.description), + text('closeLabel', 'Close button label', homeContent.videoModal.closeLabel), + ], }, ], }, diff --git a/src/collections/Pages/participationFields.ts b/src/collections/Pages/participationFields.ts index 1c71241..5bc5871 100644 --- a/src/collections/Pages/participationFields.ts +++ b/src/collections/Pages/participationFields.ts @@ -76,6 +76,7 @@ const ctaGroup = (name: string, label: string, labelDefault: string, urlDefault: type: 'group', fields: linkGroup(labelDefault, urlDefault), }) +const awardCardDefaults = participationContent.awardsGrid.cards.map(({ imageFilename: _imageFilename, ...card }) => card) export const participationFields: Field[] = [ { @@ -153,31 +154,9 @@ export const participationFields: Field[] = [ ctaGroup('nudgeCta', 'Bottom CTA', participationContent.eligibility.nudgeCta.label, participationContent.eligibility.nudgeCta.url), ], }, - { - name: 'evaluation', - label: '04 · Criteria / evaluation section', - type: 'group', - admin: sectionAdmin('Navy evaluation section with image, link, and criteria grid.'), - fields: [ - uploadField('image', 'Image', `Current frontend image: /images/${participationContent.evaluation.imageFilename}`), - text('imageAlt', 'Image alt text', participationContent.evaluation.imageAlt), - text('eyebrow', 'Eyebrow', participationContent.evaluation.eyebrow), - textarea('heading', 'Heading', participationContent.evaluation.heading), - textarea('body', 'Body copy', participationContent.evaluation.body), - ctaGroup('link', 'External criteria link', participationContent.evaluation.link.label, participationContent.evaluation.link.url), - { - name: 'criteria', - label: 'Evaluation criteria', - type: 'array', - dbName: 'eval_crit', - defaultValue: participationContent.evaluation.criteria, - fields: factFields, - }, - ], - }, { name: 'applicationWays', - label: '05 · Application paths', + label: '04 · Application paths', type: 'group', admin: sectionAdmin('Cream section explaining proposal, self-application, and special award paths.'), fields: [ @@ -236,7 +215,7 @@ export const participationFields: Field[] = [ }, { name: 'datesBanner', - label: '06 · Dates banner', + label: '05 · Dates banner', type: 'group', admin: sectionAdmin('Gold important-dates banner. Mobile and desktop labels differ slightly in the current design.'), fields: [ @@ -260,6 +239,33 @@ export const participationFields: Field[] = [ }, ], }, + { + name: 'awardsGrid', + label: '06 · Awards grid', + type: 'group', + admin: sectionAdmin('Three-column awards grid rendered directly after the dates banner.'), + fields: [ + text('eyebrow', 'Eyebrow', participationContent.awardsGrid.eyebrow), + textarea('heading', 'Heading', participationContent.awardsGrid.heading), + textarea('description', 'Intro paragraph', participationContent.awardsGrid.description), + { + name: 'cards', + label: 'Award cards', + type: 'array', + dbName: 'award_cards', + defaultValue: awardCardDefaults, + fields: [ + text('label', 'Card label'), + uploadField('image', 'Card image'), + text('imageAlt', 'Image alt text'), + textarea('title', 'Title'), + textarea('description', 'Description'), + ctaGroup('articleCta', 'Article CTA', 'Artikel lesen', '/presse'), + ctaGroup('mailtoCta', 'Mail CTA', 'Kontakt aufnehmen', 'mailto:info@bmp-bayern.de'), + ], + }, + ], + }, { name: 'applicationForm', label: '07 · Application form wrapper', diff --git a/src/collections/Pages/preistraegerIndexFields.ts b/src/collections/Pages/preistraegerIndexFields.ts index 7fea11f..1857020 100644 --- a/src/collections/Pages/preistraegerIndexFields.ts +++ b/src/collections/Pages/preistraegerIndexFields.ts @@ -50,7 +50,7 @@ export const preistraegerIndexFields: Field[] = [ name: 'hero', label: '01 · Hero image', type: 'group', - admin: sectionAdmin('Large image above the filters. Upload an image or keep the migrated URL fallback.'), + admin: sectionAdmin('Large image above the year selector. Upload an image or keep the migrated URL fallback.'), fields: [ uploadField('image', 'Hero image'), text('imageUrl', 'Fallback image URL', preistraegerIndexContent.hero.imageUrl), @@ -64,37 +64,23 @@ export const preistraegerIndexFields: Field[] = [ admin: sectionAdmin('Small page label below the image.'), fields: [text('label', 'Label', preistraegerIndexContent.breadcrumb.label)], }, - { - name: 'filters', - label: '03 · Filters', - type: 'group', - admin: sectionAdmin('Filter placeholders, toggle label, and reset label.'), - fields: [ - text('categoryPlaceholder', 'Category placeholder', preistraegerIndexContent.filters.categoryPlaceholder), - text('searchPlaceholder', 'Search placeholder', preistraegerIndexContent.filters.searchPlaceholder), - textarea('storyHeading', 'Story heading', preistraegerIndexContent.filters.storyHeading), - text('mediaIcon', 'Media icon', preistraegerIndexContent.filters.mediaIcon), - text('mediaLabel', 'Media label', preistraegerIndexContent.filters.mediaLabel), - text('resetLabel', 'Reset label', preistraegerIndexContent.filters.resetLabel), - ], - }, { name: 'count', - label: '04 · Count bar', + label: '03 · Count bar', type: 'group', - admin: sectionAdmin('Label after the filtered result count.'), + admin: sectionAdmin('Label after the selected-year result count.'), fields: [text('label', 'Count label', preistraegerIndexContent.count.label)], }, { name: 'empty', - label: '05 · Empty state', + label: '04 · Empty state', type: 'group', - admin: sectionAdmin('Message when filters return no winners.'), + admin: sectionAdmin('Message when the selected year returns no winners.'), fields: [textarea('message', 'Empty message', preistraegerIndexContent.empty.message)], }, { name: 'card', - label: '06 · Winner cards', + label: '05 · Winner cards', type: 'group', admin: sectionAdmin('Hover label shown on winner cards.'), fields: [ @@ -116,7 +102,7 @@ export const preistraegerIndexFields: Field[] = [ }, { name: 'cta', - label: '07 · Bottom CTA', + label: '06 · Bottom CTA', type: 'group', admin: sectionAdmin('Bottom application and membership CTA.'), fields: [ diff --git a/src/endpoints/seed/index.ts b/src/endpoints/seed/index.ts index 5be8511..986a024 100644 --- a/src/endpoints/seed/index.ts +++ b/src/endpoints/seed/index.ts @@ -9,6 +9,7 @@ import { imageHero1 } from './image-hero-1' import { post1 } from './post-1' import { post2 } from './post-2' import { post3 } from './post-3' +import { defaultApplicationPhaseData } from '@/spa/applicationPhase' import { defaultFooterData, defaultHeaderData } from '@/spa/cmsNavigation' import { defaultSiteSettings } from '@/spa/siteSettings' @@ -22,7 +23,7 @@ const collections: CollectionSlug[] = [ 'search', ] -const globals: GlobalSlug[] = ['header', 'footer', 'site-settings'] +const globals: GlobalSlug[] = ['header', 'footer', 'site-settings', 'application-phase'] const categories = ['Technology', 'News', 'Finance', 'Design', 'Software', 'Engineering'] @@ -233,6 +234,10 @@ export const seed = async ({ slug: 'site-settings', data: defaultSiteSettings as never, }), + payload.updateGlobal({ + slug: 'application-phase', + data: defaultApplicationPhaseData as never, + }), ]) payload.logger.info('Seeded database successfully!') diff --git a/src/migrations/20260630_133242.json b/src/migrations/20260630_133242.json new file mode 100644 index 0000000..5a9b8b8 --- /dev/null +++ b/src/migrations/20260630_133242.json @@ -0,0 +1,33136 @@ +{ + "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": {} + }, + "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_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 + } + }, + "foreignKeys": { + "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_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": {} + }, + "_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_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 + } + }, + "foreignKeys": { + "_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_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": "'{\"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": "'{\"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": "43a24c21-9821-457c-bfd9-bb64786413cc", + "prevId": "00000000-0000-0000-0000-000000000000" +} \ No newline at end of file diff --git a/src/migrations/20260630_133242.ts b/src/migrations/20260630_133242.ts new file mode 100644 index 0000000..5017e53 --- /dev/null +++ b/src/migrations/20260630_133242.ts @@ -0,0 +1,17 @@ +import { MigrateDownArgs, MigrateUpArgs, sql } from '@payloadcms/db-sqlite' + +export async function up({ db }: MigrateUpArgs): Promise { + await db.run(sql`ALTER TABLE \`pages\` ADD \`home_video_modal_video_id\` integer REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null;`) + await db.run(sql`CREATE INDEX \`pages_home_video_modal_home_video_modal_video_idx\` ON \`pages\` (\`home_video_modal_video_id\`);`) + + await db.run(sql`ALTER TABLE \`_pages_v\` ADD \`version_home_video_modal_video_id\` integer REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null;`) + await db.run(sql`CREATE INDEX \`_pages_v_version_home_video_modal_version_home_video_mod_idx\` ON \`_pages_v\` (\`version_home_video_modal_video_id\`);`) +} + +export async function down({ db }: MigrateDownArgs): Promise { + await db.run(sql`DROP INDEX IF EXISTS \`_pages_v_version_home_video_modal_version_home_video_mod_idx\`;`) + await db.run(sql`ALTER TABLE \`_pages_v\` DROP COLUMN \`version_home_video_modal_video_id\`;`) + + await db.run(sql`DROP INDEX IF EXISTS \`pages_home_video_modal_home_video_modal_video_idx\`;`) + await db.run(sql`ALTER TABLE \`pages\` DROP COLUMN \`home_video_modal_video_id\`;`) +} diff --git a/src/migrations/20260630_165002_participation_awards_grid.json b/src/migrations/20260630_165002_participation_awards_grid.json new file mode 100644 index 0000000..dda05a5 --- /dev/null +++ b/src/migrations/20260630_165002_participation_awards_grid.json @@ -0,0 +1,33485 @@ +{ + "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_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 + } + }, + "foreignKeys": { + "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_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 + } + }, + "foreignKeys": { + "_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": "6a4fb518-0491-44d7-a5f6-e848dcac4fba", + "prevId": "00000000-0000-0000-0000-000000000000" +} \ No newline at end of file diff --git a/src/migrations/20260630_165002_participation_awards_grid.ts b/src/migrations/20260630_165002_participation_awards_grid.ts new file mode 100644 index 0000000..ec6d355 --- /dev/null +++ b/src/migrations/20260630_165002_participation_awards_grid.ts @@ -0,0 +1,326 @@ +import { MigrateUpArgs, MigrateDownArgs, sql } from '@payloadcms/db-sqlite' + +export async function up({ db, payload, req }: MigrateUpArgs): Promise { + await db.run(sql`CREATE TABLE \`award_cards\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` text PRIMARY KEY NOT NULL, + \`label\` text, + \`image_id\` integer, + \`image_alt\` text, + \`title\` text, + \`description\` text, + \`article_cta_label\` text DEFAULT 'Artikel lesen', + \`article_cta_url\` text DEFAULT '/presse', + \`mailto_cta_label\` text DEFAULT 'Kontakt aufnehmen', + \`mailto_cta_url\` text DEFAULT 'mailto:info@bmp-bayern.de', + FOREIGN KEY (\`image_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 \`award_cards_order_idx\` ON \`award_cards\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`award_cards_parent_id_idx\` ON \`award_cards\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`award_cards_image_idx\` ON \`award_cards\` (\`image_id\`);`) + await db.run(sql`CREATE TABLE \`_award_cards_v\` ( + \`_order\` integer NOT NULL, + \`_parent_id\` integer NOT NULL, + \`id\` integer PRIMARY KEY NOT NULL, + \`label\` text, + \`image_id\` integer, + \`image_alt\` text, + \`title\` text, + \`description\` text, + \`article_cta_label\` text DEFAULT 'Artikel lesen', + \`article_cta_url\` text DEFAULT '/presse', + \`mailto_cta_label\` text DEFAULT 'Kontakt aufnehmen', + \`mailto_cta_url\` text DEFAULT 'mailto:info@bmp-bayern.de', + \`_uuid\` text, + FOREIGN KEY (\`image_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 \`_award_cards_v_order_idx\` ON \`_award_cards_v\` (\`_order\`);`) + await db.run(sql`CREATE INDEX \`_award_cards_v_parent_id_idx\` ON \`_award_cards_v\` (\`_parent_id\`);`) + await db.run(sql`CREATE INDEX \`_award_cards_v_image_idx\` ON \`_award_cards_v\` (\`image_id\`);`) + await db.run(sql`PRAGMA foreign_keys=OFF;`) + await db.run(sql`CREATE TABLE \`__new_posts\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`title\` text, + \`hero_image_id\` integer, + \`excerpt\` text, + \`cat\` text, + \`date\` text, + \`author_name\` text, + \`author_role\` text, + \`read_time\` text, + \`detail_page_fallback_image_id\` integer, + \`detail_page_not_found_title\` text DEFAULT 'Artikel nicht gefunden', + \`detail_page_not_found_back_label\` text DEFAULT 'Zurück zur Presse', + \`detail_page_not_found_back_url\` text DEFAULT '/presse', + \`detail_page_hero_back_link_label\` text DEFAULT 'Newsroom', + \`detail_page_hero_back_link_url\` text DEFAULT '/presse', + \`detail_page_fallback_article_title\` text DEFAULT 'Presse', + \`detail_page_fallback_article_category\` text DEFAULT 'Presse', + \`detail_page_fallback_article_date\` text DEFAULT 'Aktuell', + \`detail_page_fallback_article_author_name\` text DEFAULT 'BMP Redaktion', + \`detail_page_fallback_article_author_role\` text DEFAULT 'Presse', + \`detail_page_fallback_article_read_time\` text DEFAULT '1 min', + \`detail_page_fallback_article_excerpt\` text DEFAULT 'Dieser Pressebeitrag wird aus Payload CMS geladen.', + \`detail_page_fallback_article_tag\` text DEFAULT 'Presse', + \`detail_page_category_colors\` text DEFAULT '{"Auszeichnung":"#111D55","Innovation":"#2563EB","Engagement":"#16A34A","Wirtschaft":"#9333EA"}', + \`detail_page_meta_copy_read_time_suffix\` text DEFAULT 'Lesezeit', + \`detail_page_sidebar_cta_heading\` text DEFAULT 'Jetzt bewerben', + \`detail_page_sidebar_cta_text\` text DEFAULT 'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?', + \`detail_page_sidebar_cta_label\` text DEFAULT 'Zur Bewerbung', + \`detail_page_sidebar_cta_url\` text DEFAULT '/teilnahme', + \`detail_page_related_heading\` text DEFAULT 'Weitere Artikel', + \`detail_page_related_read_more_label\` text DEFAULT 'Weiterlesen', + \`content\` text, + \`meta_title\` text, + \`meta_image_id\` integer, + \`meta_description\` text, + \`spa_path\` text, + \`published_at\` text, + \`generate_slug\` integer DEFAULT true, + \`slug\` 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 (\`hero_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`detail_page_fallback_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`meta_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`INSERT INTO \`__new_posts\`("id", "title", "hero_image_id", "excerpt", "cat", "date", "author_name", "author_role", "read_time", "detail_page_fallback_image_id", "detail_page_not_found_title", "detail_page_not_found_back_label", "detail_page_not_found_back_url", "detail_page_hero_back_link_label", "detail_page_hero_back_link_url", "detail_page_fallback_article_title", "detail_page_fallback_article_category", "detail_page_fallback_article_date", "detail_page_fallback_article_author_name", "detail_page_fallback_article_author_role", "detail_page_fallback_article_read_time", "detail_page_fallback_article_excerpt", "detail_page_fallback_article_tag", "detail_page_category_colors", "detail_page_meta_copy_read_time_suffix", "detail_page_sidebar_cta_heading", "detail_page_sidebar_cta_text", "detail_page_sidebar_cta_label", "detail_page_sidebar_cta_url", "detail_page_related_heading", "detail_page_related_read_more_label", "content", "meta_title", "meta_image_id", "meta_description", "spa_path", "published_at", "generate_slug", "slug", "updated_at", "created_at", "_status") SELECT "id", "title", "hero_image_id", "excerpt", "cat", "date", "author_name", "author_role", "read_time", "detail_page_fallback_image_id", "detail_page_not_found_title", "detail_page_not_found_back_label", "detail_page_not_found_back_url", "detail_page_hero_back_link_label", "detail_page_hero_back_link_url", "detail_page_fallback_article_title", "detail_page_fallback_article_category", "detail_page_fallback_article_date", "detail_page_fallback_article_author_name", "detail_page_fallback_article_author_role", "detail_page_fallback_article_read_time", "detail_page_fallback_article_excerpt", "detail_page_fallback_article_tag", "detail_page_category_colors", "detail_page_meta_copy_read_time_suffix", "detail_page_sidebar_cta_heading", "detail_page_sidebar_cta_text", "detail_page_sidebar_cta_label", "detail_page_sidebar_cta_url", "detail_page_related_heading", "detail_page_related_read_more_label", "content", "meta_title", "meta_image_id", "meta_description", "spa_path", "published_at", "generate_slug", "slug", "updated_at", "created_at", "_status" FROM \`posts\`;`) + await db.run(sql`DROP TABLE \`posts\`;`) + await db.run(sql`ALTER TABLE \`__new_posts\` RENAME TO \`posts\`;`) + await db.run(sql`PRAGMA foreign_keys=ON;`) + await db.run(sql`CREATE INDEX \`posts_hero_image_idx\` ON \`posts\` (\`hero_image_id\`);`) + await db.run(sql`CREATE INDEX \`posts_detail_page_detail_page_fallback_image_idx\` ON \`posts\` (\`detail_page_fallback_image_id\`);`) + await db.run(sql`CREATE INDEX \`posts_meta_meta_image_idx\` ON \`posts\` (\`meta_image_id\`);`) + await db.run(sql`CREATE INDEX \`posts_spa_path_idx\` ON \`posts\` (\`spa_path\`);`) + await db.run(sql`CREATE UNIQUE INDEX \`posts_slug_idx\` ON \`posts\` (\`slug\`);`) + await db.run(sql`CREATE INDEX \`posts_updated_at_idx\` ON \`posts\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`posts_created_at_idx\` ON \`posts\` (\`created_at\`);`) + await db.run(sql`CREATE INDEX \`posts__status_idx\` ON \`posts\` (\`_status\`);`) + await db.run(sql`CREATE TABLE \`__new__posts_v\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`parent_id\` integer, + \`version_title\` text, + \`version_hero_image_id\` integer, + \`version_excerpt\` text, + \`version_cat\` text, + \`version_date\` text, + \`version_author_name\` text, + \`version_author_role\` text, + \`version_read_time\` text, + \`version_detail_page_fallback_image_id\` integer, + \`version_detail_page_not_found_title\` text DEFAULT 'Artikel nicht gefunden', + \`version_detail_page_not_found_back_label\` text DEFAULT 'Zurück zur Presse', + \`version_detail_page_not_found_back_url\` text DEFAULT '/presse', + \`version_detail_page_hero_back_link_label\` text DEFAULT 'Newsroom', + \`version_detail_page_hero_back_link_url\` text DEFAULT '/presse', + \`version_detail_page_fallback_article_title\` text DEFAULT 'Presse', + \`version_detail_page_fallback_article_category\` text DEFAULT 'Presse', + \`version_detail_page_fallback_article_date\` text DEFAULT 'Aktuell', + \`version_detail_page_fallback_article_author_name\` text DEFAULT 'BMP Redaktion', + \`version_detail_page_fallback_article_author_role\` text DEFAULT 'Presse', + \`version_detail_page_fallback_article_read_time\` text DEFAULT '1 min', + \`version_detail_page_fallback_article_excerpt\` text DEFAULT 'Dieser Pressebeitrag wird aus Payload CMS geladen.', + \`version_detail_page_fallback_article_tag\` text DEFAULT 'Presse', + \`version_detail_page_category_colors\` text DEFAULT '{"Auszeichnung":"#111D55","Innovation":"#2563EB","Engagement":"#16A34A","Wirtschaft":"#9333EA"}', + \`version_detail_page_meta_copy_read_time_suffix\` text DEFAULT 'Lesezeit', + \`version_detail_page_sidebar_cta_heading\` text DEFAULT 'Jetzt bewerben', + \`version_detail_page_sidebar_cta_text\` text DEFAULT 'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?', + \`version_detail_page_sidebar_cta_label\` text DEFAULT 'Zur Bewerbung', + \`version_detail_page_sidebar_cta_url\` text DEFAULT '/teilnahme', + \`version_detail_page_related_heading\` text DEFAULT 'Weitere Artikel', + \`version_detail_page_related_read_more_label\` text DEFAULT 'Weiterlesen', + \`version_content\` text, + \`version_meta_title\` text, + \`version_meta_image_id\` integer, + \`version_meta_description\` text, + \`version_spa_path\` text, + \`version_published_at\` text, + \`version_generate_slug\` integer DEFAULT true, + \`version_slug\` 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 \`posts\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_hero_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_detail_page_fallback_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_meta_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`INSERT INTO \`__new__posts_v\`("id", "parent_id", "version_title", "version_hero_image_id", "version_excerpt", "version_cat", "version_date", "version_author_name", "version_author_role", "version_read_time", "version_detail_page_fallback_image_id", "version_detail_page_not_found_title", "version_detail_page_not_found_back_label", "version_detail_page_not_found_back_url", "version_detail_page_hero_back_link_label", "version_detail_page_hero_back_link_url", "version_detail_page_fallback_article_title", "version_detail_page_fallback_article_category", "version_detail_page_fallback_article_date", "version_detail_page_fallback_article_author_name", "version_detail_page_fallback_article_author_role", "version_detail_page_fallback_article_read_time", "version_detail_page_fallback_article_excerpt", "version_detail_page_fallback_article_tag", "version_detail_page_category_colors", "version_detail_page_meta_copy_read_time_suffix", "version_detail_page_sidebar_cta_heading", "version_detail_page_sidebar_cta_text", "version_detail_page_sidebar_cta_label", "version_detail_page_sidebar_cta_url", "version_detail_page_related_heading", "version_detail_page_related_read_more_label", "version_content", "version_meta_title", "version_meta_image_id", "version_meta_description", "version_spa_path", "version_published_at", "version_generate_slug", "version_slug", "version_updated_at", "version_created_at", "version__status", "created_at", "updated_at", "latest", "autosave") SELECT "id", "parent_id", "version_title", "version_hero_image_id", "version_excerpt", "version_cat", "version_date", "version_author_name", "version_author_role", "version_read_time", "version_detail_page_fallback_image_id", "version_detail_page_not_found_title", "version_detail_page_not_found_back_label", "version_detail_page_not_found_back_url", "version_detail_page_hero_back_link_label", "version_detail_page_hero_back_link_url", "version_detail_page_fallback_article_title", "version_detail_page_fallback_article_category", "version_detail_page_fallback_article_date", "version_detail_page_fallback_article_author_name", "version_detail_page_fallback_article_author_role", "version_detail_page_fallback_article_read_time", "version_detail_page_fallback_article_excerpt", "version_detail_page_fallback_article_tag", "version_detail_page_category_colors", "version_detail_page_meta_copy_read_time_suffix", "version_detail_page_sidebar_cta_heading", "version_detail_page_sidebar_cta_text", "version_detail_page_sidebar_cta_label", "version_detail_page_sidebar_cta_url", "version_detail_page_related_heading", "version_detail_page_related_read_more_label", "version_content", "version_meta_title", "version_meta_image_id", "version_meta_description", "version_spa_path", "version_published_at", "version_generate_slug", "version_slug", "version_updated_at", "version_created_at", "version__status", "created_at", "updated_at", "latest", "autosave" FROM \`_posts_v\`;`) + await db.run(sql`DROP TABLE \`_posts_v\`;`) + await db.run(sql`ALTER TABLE \`__new__posts_v\` RENAME TO \`_posts_v\`;`) + await db.run(sql`CREATE INDEX \`_posts_v_parent_idx\` ON \`_posts_v\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_hero_image_idx\` ON \`_posts_v\` (\`version_hero_image_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_detail_page_version_detail_page_fallbac_idx\` ON \`_posts_v\` (\`version_detail_page_fallback_image_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_meta_version_meta_image_idx\` ON \`_posts_v\` (\`version_meta_image_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_spa_path_idx\` ON \`_posts_v\` (\`version_spa_path\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_slug_idx\` ON \`_posts_v\` (\`version_slug\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_updated_at_idx\` ON \`_posts_v\` (\`version_updated_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_created_at_idx\` ON \`_posts_v\` (\`version_created_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version__status_idx\` ON \`_posts_v\` (\`version__status\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_created_at_idx\` ON \`_posts_v\` (\`created_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_updated_at_idx\` ON \`_posts_v\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_latest_idx\` ON \`_posts_v\` (\`latest\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_autosave_idx\` ON \`_posts_v\` (\`autosave\`);`) + await db.run(sql`ALTER TABLE \`pages\` ADD \`participation_awards_grid_eyebrow\` text DEFAULT 'Auszeichnungen 2026';`) + await db.run(sql`ALTER TABLE \`pages\` ADD \`participation_awards_grid_heading\` text DEFAULT 'DREI AUSZEICHNUNGEN. + EIN ANSPRUCH.';`) + await db.run(sql`ALTER TABLE \`pages\` ADD \`participation_awards_grid_description\` text DEFAULT 'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.';`) + await db.run(sql`ALTER TABLE \`_pages_v\` ADD \`version_participation_awards_grid_eyebrow\` text DEFAULT 'Auszeichnungen 2026';`) + await db.run(sql`ALTER TABLE \`_pages_v\` ADD \`version_participation_awards_grid_heading\` text DEFAULT 'DREI AUSZEICHNUNGEN. + EIN ANSPRUCH.';`) + await db.run(sql`ALTER TABLE \`_pages_v\` ADD \`version_participation_awards_grid_description\` text DEFAULT 'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.';`) +} + +export async function down({ db, payload, req }: MigrateDownArgs): Promise { + await db.run(sql`DROP TABLE \`award_cards\`;`) + await db.run(sql`DROP TABLE \`_award_cards_v\`;`) + await db.run(sql`PRAGMA foreign_keys=OFF;`) + await db.run(sql`CREATE TABLE \`__new_posts\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`title\` text, + \`hero_image_id\` integer, + \`excerpt\` text, + \`cat\` text, + \`date\` text, + \`author_name\` text, + \`author_role\` text, + \`read_time\` text, + \`detail_page_fallback_image_id\` integer, + \`detail_page_not_found_title\` text DEFAULT 'Artikel nicht gefunden', + \`detail_page_not_found_back_label\` text DEFAULT 'Zurück zur Presse', + \`detail_page_not_found_back_url\` text DEFAULT '/presse', + \`detail_page_hero_back_link_label\` text DEFAULT 'Newsroom', + \`detail_page_hero_back_link_url\` text DEFAULT '/presse', + \`detail_page_fallback_article_title\` text DEFAULT 'Presse', + \`detail_page_fallback_article_category\` text DEFAULT 'Presse', + \`detail_page_fallback_article_date\` text DEFAULT 'Aktuell', + \`detail_page_fallback_article_author_name\` text DEFAULT 'BMP Redaktion', + \`detail_page_fallback_article_author_role\` text DEFAULT 'Presse', + \`detail_page_fallback_article_read_time\` text DEFAULT '1 min', + \`detail_page_fallback_article_excerpt\` text DEFAULT 'Dieser Pressebeitrag wird aus Payload CMS geladen.', + \`detail_page_fallback_article_tag\` text DEFAULT 'Presse', + \`detail_page_category_colors\` text DEFAULT '{"Innovation":"#2563EB","Engagement":"#16A34A","Wirtschaft":"#9333EA"}', + \`detail_page_meta_copy_read_time_suffix\` text DEFAULT 'Lesezeit', + \`detail_page_sidebar_cta_heading\` text DEFAULT 'Jetzt bewerben', + \`detail_page_sidebar_cta_text\` text DEFAULT 'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?', + \`detail_page_sidebar_cta_label\` text DEFAULT 'Zur Bewerbung', + \`detail_page_sidebar_cta_url\` text DEFAULT '/teilnahme', + \`detail_page_related_heading\` text DEFAULT 'Weitere Artikel', + \`detail_page_related_read_more_label\` text DEFAULT 'Weiterlesen', + \`content\` text, + \`meta_title\` text, + \`meta_image_id\` integer, + \`meta_description\` text, + \`spa_path\` text, + \`published_at\` text, + \`generate_slug\` integer DEFAULT true, + \`slug\` 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 (\`hero_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`detail_page_fallback_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`meta_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`INSERT INTO \`__new_posts\`("id", "title", "hero_image_id", "excerpt", "cat", "date", "author_name", "author_role", "read_time", "detail_page_fallback_image_id", "detail_page_not_found_title", "detail_page_not_found_back_label", "detail_page_not_found_back_url", "detail_page_hero_back_link_label", "detail_page_hero_back_link_url", "detail_page_fallback_article_title", "detail_page_fallback_article_category", "detail_page_fallback_article_date", "detail_page_fallback_article_author_name", "detail_page_fallback_article_author_role", "detail_page_fallback_article_read_time", "detail_page_fallback_article_excerpt", "detail_page_fallback_article_tag", "detail_page_category_colors", "detail_page_meta_copy_read_time_suffix", "detail_page_sidebar_cta_heading", "detail_page_sidebar_cta_text", "detail_page_sidebar_cta_label", "detail_page_sidebar_cta_url", "detail_page_related_heading", "detail_page_related_read_more_label", "content", "meta_title", "meta_image_id", "meta_description", "spa_path", "published_at", "generate_slug", "slug", "updated_at", "created_at", "_status") SELECT "id", "title", "hero_image_id", "excerpt", "cat", "date", "author_name", "author_role", "read_time", "detail_page_fallback_image_id", "detail_page_not_found_title", "detail_page_not_found_back_label", "detail_page_not_found_back_url", "detail_page_hero_back_link_label", "detail_page_hero_back_link_url", "detail_page_fallback_article_title", "detail_page_fallback_article_category", "detail_page_fallback_article_date", "detail_page_fallback_article_author_name", "detail_page_fallback_article_author_role", "detail_page_fallback_article_read_time", "detail_page_fallback_article_excerpt", "detail_page_fallback_article_tag", "detail_page_category_colors", "detail_page_meta_copy_read_time_suffix", "detail_page_sidebar_cta_heading", "detail_page_sidebar_cta_text", "detail_page_sidebar_cta_label", "detail_page_sidebar_cta_url", "detail_page_related_heading", "detail_page_related_read_more_label", "content", "meta_title", "meta_image_id", "meta_description", "spa_path", "published_at", "generate_slug", "slug", "updated_at", "created_at", "_status" FROM \`posts\`;`) + await db.run(sql`DROP TABLE \`posts\`;`) + await db.run(sql`ALTER TABLE \`__new_posts\` RENAME TO \`posts\`;`) + await db.run(sql`PRAGMA foreign_keys=ON;`) + await db.run(sql`CREATE INDEX \`posts_hero_image_idx\` ON \`posts\` (\`hero_image_id\`);`) + await db.run(sql`CREATE INDEX \`posts_detail_page_detail_page_fallback_image_idx\` ON \`posts\` (\`detail_page_fallback_image_id\`);`) + await db.run(sql`CREATE INDEX \`posts_meta_meta_image_idx\` ON \`posts\` (\`meta_image_id\`);`) + await db.run(sql`CREATE INDEX \`posts_spa_path_idx\` ON \`posts\` (\`spa_path\`);`) + await db.run(sql`CREATE UNIQUE INDEX \`posts_slug_idx\` ON \`posts\` (\`slug\`);`) + await db.run(sql`CREATE INDEX \`posts_updated_at_idx\` ON \`posts\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`posts_created_at_idx\` ON \`posts\` (\`created_at\`);`) + await db.run(sql`CREATE INDEX \`posts__status_idx\` ON \`posts\` (\`_status\`);`) + await db.run(sql`CREATE TABLE \`__new__posts_v\` ( + \`id\` integer PRIMARY KEY NOT NULL, + \`parent_id\` integer, + \`version_title\` text, + \`version_hero_image_id\` integer, + \`version_excerpt\` text, + \`version_cat\` text, + \`version_date\` text, + \`version_author_name\` text, + \`version_author_role\` text, + \`version_read_time\` text, + \`version_detail_page_fallback_image_id\` integer, + \`version_detail_page_not_found_title\` text DEFAULT 'Artikel nicht gefunden', + \`version_detail_page_not_found_back_label\` text DEFAULT 'Zurück zur Presse', + \`version_detail_page_not_found_back_url\` text DEFAULT '/presse', + \`version_detail_page_hero_back_link_label\` text DEFAULT 'Newsroom', + \`version_detail_page_hero_back_link_url\` text DEFAULT '/presse', + \`version_detail_page_fallback_article_title\` text DEFAULT 'Presse', + \`version_detail_page_fallback_article_category\` text DEFAULT 'Presse', + \`version_detail_page_fallback_article_date\` text DEFAULT 'Aktuell', + \`version_detail_page_fallback_article_author_name\` text DEFAULT 'BMP Redaktion', + \`version_detail_page_fallback_article_author_role\` text DEFAULT 'Presse', + \`version_detail_page_fallback_article_read_time\` text DEFAULT '1 min', + \`version_detail_page_fallback_article_excerpt\` text DEFAULT 'Dieser Pressebeitrag wird aus Payload CMS geladen.', + \`version_detail_page_fallback_article_tag\` text DEFAULT 'Presse', + \`version_detail_page_category_colors\` text DEFAULT '{"Innovation":"#2563EB","Engagement":"#16A34A","Wirtschaft":"#9333EA"}', + \`version_detail_page_meta_copy_read_time_suffix\` text DEFAULT 'Lesezeit', + \`version_detail_page_sidebar_cta_heading\` text DEFAULT 'Jetzt bewerben', + \`version_detail_page_sidebar_cta_text\` text DEFAULT 'Ist Ihr Unternehmen bereit für den Bayerischen Mittelstandspreis 2026?', + \`version_detail_page_sidebar_cta_label\` text DEFAULT 'Zur Bewerbung', + \`version_detail_page_sidebar_cta_url\` text DEFAULT '/teilnahme', + \`version_detail_page_related_heading\` text DEFAULT 'Weitere Artikel', + \`version_detail_page_related_read_more_label\` text DEFAULT 'Weiterlesen', + \`version_content\` text, + \`version_meta_title\` text, + \`version_meta_image_id\` integer, + \`version_meta_description\` text, + \`version_spa_path\` text, + \`version_published_at\` text, + \`version_generate_slug\` integer DEFAULT true, + \`version_slug\` 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 \`posts\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_hero_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_detail_page_fallback_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null, + FOREIGN KEY (\`version_meta_image_id\`) REFERENCES \`media\`(\`id\`) ON UPDATE no action ON DELETE set null + ); + `) + await db.run(sql`INSERT INTO \`__new__posts_v\`("id", "parent_id", "version_title", "version_hero_image_id", "version_excerpt", "version_cat", "version_date", "version_author_name", "version_author_role", "version_read_time", "version_detail_page_fallback_image_id", "version_detail_page_not_found_title", "version_detail_page_not_found_back_label", "version_detail_page_not_found_back_url", "version_detail_page_hero_back_link_label", "version_detail_page_hero_back_link_url", "version_detail_page_fallback_article_title", "version_detail_page_fallback_article_category", "version_detail_page_fallback_article_date", "version_detail_page_fallback_article_author_name", "version_detail_page_fallback_article_author_role", "version_detail_page_fallback_article_read_time", "version_detail_page_fallback_article_excerpt", "version_detail_page_fallback_article_tag", "version_detail_page_category_colors", "version_detail_page_meta_copy_read_time_suffix", "version_detail_page_sidebar_cta_heading", "version_detail_page_sidebar_cta_text", "version_detail_page_sidebar_cta_label", "version_detail_page_sidebar_cta_url", "version_detail_page_related_heading", "version_detail_page_related_read_more_label", "version_content", "version_meta_title", "version_meta_image_id", "version_meta_description", "version_spa_path", "version_published_at", "version_generate_slug", "version_slug", "version_updated_at", "version_created_at", "version__status", "created_at", "updated_at", "latest", "autosave") SELECT "id", "parent_id", "version_title", "version_hero_image_id", "version_excerpt", "version_cat", "version_date", "version_author_name", "version_author_role", "version_read_time", "version_detail_page_fallback_image_id", "version_detail_page_not_found_title", "version_detail_page_not_found_back_label", "version_detail_page_not_found_back_url", "version_detail_page_hero_back_link_label", "version_detail_page_hero_back_link_url", "version_detail_page_fallback_article_title", "version_detail_page_fallback_article_category", "version_detail_page_fallback_article_date", "version_detail_page_fallback_article_author_name", "version_detail_page_fallback_article_author_role", "version_detail_page_fallback_article_read_time", "version_detail_page_fallback_article_excerpt", "version_detail_page_fallback_article_tag", "version_detail_page_category_colors", "version_detail_page_meta_copy_read_time_suffix", "version_detail_page_sidebar_cta_heading", "version_detail_page_sidebar_cta_text", "version_detail_page_sidebar_cta_label", "version_detail_page_sidebar_cta_url", "version_detail_page_related_heading", "version_detail_page_related_read_more_label", "version_content", "version_meta_title", "version_meta_image_id", "version_meta_description", "version_spa_path", "version_published_at", "version_generate_slug", "version_slug", "version_updated_at", "version_created_at", "version__status", "created_at", "updated_at", "latest", "autosave" FROM \`_posts_v\`;`) + await db.run(sql`DROP TABLE \`_posts_v\`;`) + await db.run(sql`ALTER TABLE \`__new__posts_v\` RENAME TO \`_posts_v\`;`) + await db.run(sql`CREATE INDEX \`_posts_v_parent_idx\` ON \`_posts_v\` (\`parent_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_hero_image_idx\` ON \`_posts_v\` (\`version_hero_image_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_detail_page_version_detail_page_fallbac_idx\` ON \`_posts_v\` (\`version_detail_page_fallback_image_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_meta_version_meta_image_idx\` ON \`_posts_v\` (\`version_meta_image_id\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_spa_path_idx\` ON \`_posts_v\` (\`version_spa_path\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_slug_idx\` ON \`_posts_v\` (\`version_slug\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_updated_at_idx\` ON \`_posts_v\` (\`version_updated_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version_created_at_idx\` ON \`_posts_v\` (\`version_created_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_version_version__status_idx\` ON \`_posts_v\` (\`version__status\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_created_at_idx\` ON \`_posts_v\` (\`created_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_updated_at_idx\` ON \`_posts_v\` (\`updated_at\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_latest_idx\` ON \`_posts_v\` (\`latest\`);`) + await db.run(sql`CREATE INDEX \`_posts_v_autosave_idx\` ON \`_posts_v\` (\`autosave\`);`) + await db.run(sql`ALTER TABLE \`pages\` DROP COLUMN \`participation_awards_grid_eyebrow\`;`) + await db.run(sql`ALTER TABLE \`pages\` DROP COLUMN \`participation_awards_grid_heading\`;`) + await db.run(sql`ALTER TABLE \`pages\` DROP COLUMN \`participation_awards_grid_description\`;`) + await db.run(sql`ALTER TABLE \`_pages_v\` DROP COLUMN \`version_participation_awards_grid_eyebrow\`;`) + await db.run(sql`ALTER TABLE \`_pages_v\` DROP COLUMN \`version_participation_awards_grid_heading\`;`) + await db.run(sql`ALTER TABLE \`_pages_v\` DROP COLUMN \`version_participation_awards_grid_description\`;`) +} diff --git a/src/migrations/index.ts b/src/migrations/index.ts new file mode 100644 index 0000000..d17aad9 --- /dev/null +++ b/src/migrations/index.ts @@ -0,0 +1,15 @@ +import * as migration_20260630_133242 from './20260630_133242'; +import * as migration_20260630_165002_participation_awards_grid from './20260630_165002_participation_awards_grid'; + +export const migrations = [ + { + up: migration_20260630_133242.up, + down: migration_20260630_133242.down, + name: '20260630_133242', + }, + { + up: migration_20260630_165002_participation_awards_grid.up, + down: migration_20260630_165002_participation_awards_grid.down, + name: '20260630_165002_participation_awards_grid' + }, +]; diff --git a/src/payload-types.ts b/src/payload-types.ts index 2487358..003d310 100644 --- a/src/payload-types.ts +++ b/src/payload-types.ts @@ -117,11 +117,13 @@ export interface Config { header: Header; footer: Footer; 'site-settings': SiteSetting; + 'application-phase': ApplicationPhase; }; globalsSelect: { header: HeaderSelect | HeaderSelect; footer: FooterSelect | FooterSelect; 'site-settings': SiteSettingsSelect | SiteSettingsSelect; + 'application-phase': ApplicationPhaseSelect | ApplicationPhaseSelect; }; locale: null; widgets: { @@ -243,7 +245,7 @@ export interface Page { | null; }; /** - * Cream text panel plus right-side stage image and five eligibility rows. + * White text panel plus right-side stage image and five eligibility rows. */ quickCheck?: { eyebrow?: string | null; @@ -292,43 +294,6 @@ export interface Page { url?: string | null; }; }; - /** - * Three-slide status module shown after the award intro. - */ - status?: { - /** - * Only this selected phase is rendered on the frontend; visitors do not see a slider. - */ - activePhase?: ('0' | '1' | '2') | null; - phases?: - | { - num?: string | null; - tag?: string | null; - pulse?: boolean | null; - phase?: string | null; - headline?: string | null; - body?: string | null; - cta?: { - label?: string | null; - url?: string | null; - }; - accent?: string | null; - bg?: string | null; - glow?: string | null; - meta?: string | null; - successApplications?: string | null; - successWinners?: string | null; - membershipCta?: { - label?: string | null; - url?: string | null; - }; - id?: string | null; - }[] - | null; - noActionLabel?: string | null; - successApplicationsLabel?: string | null; - successWinnersLabel?: string | null; - }; /** * Blue card grid with featured winner relationships. */ @@ -375,7 +340,7 @@ export interface Page { | null; }; /** - * Cream left panel and networking image. + * White left panel and networking image. */ benefits?: { eyebrow?: string | null; @@ -581,9 +546,13 @@ export interface Page { }; }; /** - * Copy shown when the hero video button is clicked. + * Video and fallback copy shown when the hero video button is clicked. */ videoModal?: { + /** + * Choose a video from the media collection. If empty, the frontend shows the fallback copy below. + */ + video?: (number | null) | Media; title?: string | null; description?: string | null; closeLabel?: string | null; @@ -843,30 +812,6 @@ export interface Page { url?: string | null; }; }; - /** - * Navy evaluation section with image, link, and criteria grid. - */ - evaluation?: { - /** - * Current frontend image: /images/buehne-gewinner.jpg - */ - image?: (number | null) | Media; - imageAlt?: string | null; - eyebrow?: string | null; - heading?: string | null; - body?: string | null; - link?: { - label?: string | null; - url?: string | null; - }; - criteria?: - | { - label?: string | null; - desc?: string | null; - id?: string | null; - }[] - | null; - }; /** * Cream section explaining proposal, self-application, and special award paths. */ @@ -948,6 +893,32 @@ export interface Page { }[] | null; }; + /** + * Three-column awards grid rendered directly after the dates banner. + */ + awardsGrid?: { + eyebrow?: string | null; + heading?: string | null; + description?: string | null; + cards?: + | { + label?: string | null; + image?: (number | null) | Media; + imageAlt?: string | null; + title?: string | null; + description?: string | null; + articleCta?: { + label?: string | null; + url?: string | null; + }; + mailtoCta?: { + label?: string | null; + url?: string | null; + }; + id?: string | null; + }[] + | null; + }; /** * Navy/gold section containing the application form and PDF upload links. */ @@ -1427,7 +1398,7 @@ export interface Page { */ preistraegerIndex?: { /** - * Large image above the filters. Upload an image or keep the migrated URL fallback. + * Large image above the year selector. Upload an image or keep the migrated URL fallback. */ hero?: { image?: (number | null) | Media; @@ -1441,24 +1412,13 @@ export interface Page { label?: string | null; }; /** - * Filter placeholders, toggle label, and reset label. - */ - filters?: { - categoryPlaceholder?: string | null; - searchPlaceholder?: string | null; - storyHeading?: string | null; - mediaIcon?: string | null; - mediaLabel?: string | null; - resetLabel?: string | null; - }; - /** - * Label after the filtered result count. + * Label after the selected-year result count. */ count?: { label?: string | null; }; /** - * Message when filters return no winners. + * Message when the selected year returns no winners. */ empty?: { message?: string | null; @@ -3396,43 +3356,6 @@ export interface PagesSelect { url?: T; }; }; - status?: - | T - | { - activePhase?: T; - phases?: - | T - | { - num?: T; - tag?: T; - pulse?: T; - phase?: T; - headline?: T; - body?: T; - cta?: - | T - | { - label?: T; - url?: T; - }; - accent?: T; - bg?: T; - glow?: T; - meta?: T; - successApplications?: T; - successWinners?: T; - membershipCta?: - | T - | { - label?: T; - url?: T; - }; - id?: T; - }; - noActionLabel?: T; - successApplicationsLabel?: T; - successWinnersLabel?: T; - }; winners?: | T | { @@ -3652,6 +3575,7 @@ export interface PagesSelect { videoModal?: | T | { + video?: T; title?: T; description?: T; closeLabel?: T; @@ -3851,28 +3775,6 @@ export interface PagesSelect { url?: T; }; }; - evaluation?: - | T - | { - image?: T; - imageAlt?: T; - eyebrow?: T; - heading?: T; - body?: T; - link?: - | T - | { - label?: T; - url?: T; - }; - criteria?: - | T - | { - label?: T; - desc?: T; - id?: T; - }; - }; applicationWays?: | T | { @@ -3937,6 +3839,35 @@ export interface PagesSelect { id?: T; }; }; + awardsGrid?: + | T + | { + eyebrow?: T; + heading?: T; + description?: T; + cards?: + | T + | { + label?: T; + image?: T; + imageAlt?: T; + title?: T; + description?: T; + articleCta?: + | T + | { + label?: T; + url?: T; + }; + mailtoCta?: + | T + | { + label?: T; + url?: T; + }; + id?: T; + }; + }; applicationForm?: | T | { @@ -4358,16 +4289,6 @@ export interface PagesSelect { | { label?: T; }; - filters?: - | T - | { - categoryPlaceholder?: T; - searchPlaceholder?: T; - storyHeading?: T; - mediaIcon?: T; - mediaLabel?: T; - resetLabel?: T; - }; count?: | T | { @@ -5802,8 +5723,6 @@ export interface Header { closeLabel: string; dialogLabel: string; overviewLabel: string; - loadingBrand: string; - loadingLabel: string; navItems?: | { /** @@ -5834,7 +5753,7 @@ export interface Header { | { label: string; path: string; - variant?: ('primary' | 'secondary' | 'upload') | null; + variant?: ('primary' | 'secondary' | 'login') | null; id?: string | null; }[] | null; @@ -5846,12 +5765,6 @@ export interface Header { id?: string | null; }[] | null; - languages?: - | { - label: string; - id?: string | null; - }[] - | null; updatedAt?: string | null; createdAt?: string | null; } @@ -5927,6 +5840,47 @@ export interface SiteSetting { updatedAt?: string | null; createdAt?: string | null; } +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "application-phase". + */ +export interface ApplicationPhase { + id: number; + /** + * Controls phase-dependent frontend rendering across the site. + */ + activePhase?: ('0' | '1' | '2') | null; + phases?: + | { + num?: string | null; + tag?: string | null; + pulse?: boolean | null; + phase?: string | null; + headline?: string | null; + body?: string | null; + cta?: { + label?: string | null; + url?: string | null; + }; + accent?: string | null; + bg?: string | null; + glow?: string | null; + meta?: string | null; + successApplications?: string | null; + successWinners?: string | null; + membershipCta?: { + label?: string | null; + url?: string | null; + }; + id?: string | null; + }[] + | null; + noActionLabel?: string | null; + successApplicationsLabel?: string | null; + successWinnersLabel?: string | null; + updatedAt?: string | null; + createdAt?: string | null; +} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "header_select". @@ -5942,8 +5896,6 @@ export interface HeaderSelect { closeLabel?: T; dialogLabel?: T; overviewLabel?: T; - loadingBrand?: T; - loadingLabel?: T; navItems?: | T | { @@ -5983,12 +5935,6 @@ export interface HeaderSelect { icon?: T; id?: T; }; - languages?: - | T - | { - label?: T; - id?: T; - }; updatedAt?: T; createdAt?: T; globalType?: T; @@ -6061,6 +6007,48 @@ export interface SiteSettingsSelect { createdAt?: T; globalType?: T; } +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "application-phase_select". + */ +export interface ApplicationPhaseSelect { + activePhase?: T; + phases?: + | T + | { + num?: T; + tag?: T; + pulse?: T; + phase?: T; + headline?: T; + body?: T; + cta?: + | T + | { + label?: T; + url?: T; + }; + accent?: T; + bg?: T; + glow?: T; + meta?: T; + successApplications?: T; + successWinners?: T; + membershipCta?: + | T + | { + label?: T; + url?: T; + }; + id?: T; + }; + noActionLabel?: T; + successApplicationsLabel?: T; + successWinnersLabel?: T; + updatedAt?: T; + createdAt?: T; + globalType?: T; +} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "collections_widget". diff --git a/src/payload.config.ts b/src/payload.config.ts index 169744a..3b6c8b7 100644 --- a/src/payload.config.ts +++ b/src/payload.config.ts @@ -11,6 +11,7 @@ import { Pages } from './collections/Pages' import { Posts } from './collections/Posts' import { Preistraeger } from './collections/Preistraeger' import { Users } from './collections/Users' +import { ApplicationPhase } from './ApplicationPhase/config' import { Footer } from './Footer/config' import { Header } from './Header/config' import { plugins } from './plugins' @@ -67,7 +68,7 @@ export default buildConfig({ }), collections: [Pages, Posts, Events, Preistraeger, Media, Categories, Users], cors: [getServerSideURL()].filter(Boolean), - globals: [Header, Footer, SiteSettings], + globals: [Header, Footer, SiteSettings, ApplicationPhase], plugins, secret: process.env.PAYLOAD_SECRET, sharp, diff --git a/src/scripts/preload-globals-cms.ts b/src/scripts/preload-globals-cms.ts index 4b597ba..5b06edc 100644 --- a/src/scripts/preload-globals-cms.ts +++ b/src/scripts/preload-globals-cms.ts @@ -1,9 +1,10 @@ import 'dotenv/config' import config from '@payload-config' -import { getPayload, type Payload } from 'payload' +import { getPayload } from 'payload' import { mediaByFilename } from './mediaByFilename' +import { defaultApplicationPhaseData } from '@/spa/applicationPhase' import { defaultFooterData, defaultHeaderData } from '@/spa/cmsNavigation' import { defaultSiteSettings } from '@/spa/siteSettings' @@ -17,7 +18,7 @@ async function main() { mediaByFilename(payload, 'munich-skyline.jpg'), ]) - const { logo: _headerLogo, languages, ...headerData } = defaultHeaderData + const { logo: _headerLogo, ...headerData } = defaultHeaderData const { logo: _footerLogo, partnerLogos: _defaultPartnerLogos, ...footerData } = defaultFooterData const { skylineImageUrl: _skylineImageUrl, ...siteSettingsData } = defaultSiteSettings @@ -28,7 +29,6 @@ async function main() { data: { ...headerData, logo, - languages: languages.map((label) => ({ label })), } as never, }), payload.updateGlobal({ @@ -54,6 +54,11 @@ async function main() { skylineImage, } as never, }), + payload.updateGlobal({ + slug: 'application-phase', + context: { disableRevalidate: true }, + data: defaultApplicationPhaseData as never, + }), ]) payload.logger.info('Preloaded global CMS settings.') diff --git a/src/scripts/preload-home-page-cms.ts b/src/scripts/preload-home-page-cms.ts index cb3f676..79c8acf 100644 --- a/src/scripts/preload-home-page-cms.ts +++ b/src/scripts/preload-home-page-cms.ts @@ -84,7 +84,6 @@ async function main() { ...introContent, image: introImage, }, - status: homeContent.status, winners: { ...winnersContent, fallbackImage: fallbackWinnerImage, diff --git a/src/scripts/preload-participation-awards-cms.ts b/src/scripts/preload-participation-awards-cms.ts new file mode 100644 index 0000000..1b9b7cf --- /dev/null +++ b/src/scripts/preload-participation-awards-cms.ts @@ -0,0 +1,218 @@ +import 'dotenv/config' + +import config from '@payload-config' +import fs from 'fs/promises' +import path from 'path' +import { getPayload, type File, type Payload } from 'payload' + +import { awardArticles, participationAwardsGrid } from '@/spa/awardArticles' +import { blogDetailContent } from '@/spa/blogDetailContent' +import { findMediaByFilename, mediaByFilename } from './mediaByFilename' + +process.env.PAYLOAD_MIGRATING ||= 'true' + +const root = process.cwd() +const publicImagesDir = path.join(root, 'public/images') + +const mimeByExt: Record = { + '.jpg': 'image/jpeg', + '.jpeg': 'image/jpeg', + '.png': 'image/png', + '.webp': 'image/webp', +} + +const emptyRichText = (text: string) => ({ + root: { + type: 'root', + children: [ + { + type: 'paragraph', + children: [ + { + type: 'text', + detail: 0, + format: 0, + mode: 'normal', + style: '', + text, + version: 1, + }, + ], + direction: 'ltr' as const, + format: '' as const, + indent: 0, + version: 1, + }, + ], + direction: 'ltr' as const, + format: '' as const, + indent: 0, + version: 1, + }, +}) + +async function fileForImage(filename: string): Promise { + const fullPath = path.join(publicImagesDir, filename) + const data = await fs.readFile(fullPath) + const ext = path.extname(filename).toLowerCase() + + return { + name: filename, + data, + mimetype: mimeByExt[ext] || 'application/octet-stream', + size: data.byteLength, + } +} + +async function ensureMedia(payload: Payload, filename: string, alt: string) { + const existing = await findMediaByFilename(payload, filename) + if (existing) return existing.id + + const doc = await payload.create({ + collection: 'media', + data: { alt }, + file: await fileForImage(filename), + overrideAccess: true, + }) + + return doc.id +} + +async function findExistingPost(payload: Payload, slug: string) { + const result = await payload.find({ + collection: 'posts', + depth: 0, + draft: true, + limit: 1, + pagination: false, + overrideAccess: true, + where: { + or: [{ slug: { equals: slug } }, { spaPath: { equals: `/presse/blog/${slug}` } }], + }, + }) + + return result.docs[0] as { id: string | number; publishedAt?: string | null } | undefined +} + +async function upsertAwardPosts(payload: Payload, mediaIds: Map) { + const fallbackImage = await mediaByFilename(payload, blogDetailContent.fallbackImageFilename) + const { fallbackImageFilename: _fallbackImageFilename, ...detailContent } = blogDetailContent + const publishedAt = new Date('2026-06-30T12:00:00.000Z').toISOString() + + for (const article of awardArticles) { + const existing = await findExistingPost(payload, article.slug) + const heroImage = mediaIds.get(article.imageFilename) + const articleBody = article.sections.map((section) => [section.heading, section.body].filter(Boolean).join('\n')).join('\n\n') + const data = { + title: article.title, + slug: article.slug, + spaPath: `/presse/blog/${article.slug}`, + _status: 'published' as const, + meta: { + title: article.title, + description: article.excerpt, + image: heroImage, + }, + heroImage, + excerpt: article.excerpt, + cat: article.cat, + date: article.date, + authorName: article.author, + authorRole: article.authorRole, + readTime: article.readTime, + sections: article.sections, + tags: article.tags.map((tag) => ({ tag })), + relatedSlugs: article.relatedSlugs.map((slug) => ({ slug })), + detailPage: { + ...detailContent, + fallbackImage, + metaCopy: blogDetailContent.meta, + sidebarCta: article.detailSidebarCta, + }, + content: emptyRichText(articleBody), + publishedAt: existing?.publishedAt || publishedAt, + relatedPosts: [], + categories: [], + authors: [], + } + + if (existing) { + await payload.update({ + collection: 'posts', + id: existing.id, + overrideAccess: true, + context: { disableRevalidate: true }, + data: data as never, + }) + payload.logger.info(`updated award post: ${article.slug}`) + } else { + await payload.create({ + collection: 'posts', + overrideAccess: true, + context: { disableRevalidate: true }, + data: data as never, + }) + payload.logger.info(`created award post: ${article.slug}`) + } + } +} + +async function preloadParticipationGrid(payload: Payload, mediaIds: Map) { + const pageResult = await payload.find({ + collection: 'pages', + depth: 0, + limit: 1, + pagination: false, + draft: true, + overrideAccess: true, + where: { + or: [{ spaPath: { equals: '/teilnahme' } }, { slug: { equals: 'teilnahme' } }, { slug: { equals: 'participation' } }], + } as never, + }) + + const page = pageResult.docs[0] as { id: string | number; participation?: Record } | undefined + if (!page) throw new Error('Participation page not found. Expected spaPath=/teilnahme or slug=teilnahme/participation.') + + const gridData = { + ...participationAwardsGrid, + cards: participationAwardsGrid.cards.map(({ imageFilename: _imageFilename, ...card }) => ({ + ...card, + image: mediaIds.get(_imageFilename), + })), + } + + await payload.update({ + collection: 'pages', + id: page.id, + overrideAccess: true, + context: { disableRevalidate: true }, + data: { + participation: { + ...(page.participation || {}), + awardsGrid: gridData, + }, + } as never, + }) +} + +async function main() { + const payload = await getPayload({ config }) + const mediaIds = new Map() + + for (const article of awardArticles) { + if (!mediaIds.has(article.imageFilename)) { + mediaIds.set(article.imageFilename, await ensureMedia(payload, article.imageFilename, article.imageAlt)) + } + } + + await upsertAwardPosts(payload, mediaIds) + await preloadParticipationGrid(payload, mediaIds) + + payload.logger.info(`Preloaded participation awards grid and ${awardArticles.length} award posts`) + process.exit(0) +} + +main().catch((error) => { + console.error(error) + process.exit(1) +}) diff --git a/src/scripts/preload-participation-page-cms.ts b/src/scripts/preload-participation-page-cms.ts index 88c64ac..c5f11c5 100644 --- a/src/scripts/preload-participation-page-cms.ts +++ b/src/scripts/preload-participation-page-cms.ts @@ -1,7 +1,7 @@ import 'dotenv/config' import config from '@payload-config' -import { getPayload, type Payload } from 'payload' +import { getPayload } from 'payload' import { mediaByFilename } from './mediaByFilename' import { participationContent } from '@/spa/participationContent' @@ -23,14 +23,14 @@ async function main() { const page = pageResult.docs[0] if (!page) throw new Error('Participation page not found. Expected spaPath=/teilnahme or slug=teilnahme/participation.') - const [heroImage, evaluationImage, formImage] = await Promise.all([ + const [heroImage, formImage, ...awardCardImages] = await Promise.all([ mediaByFilename(payload, participationContent.hero.backgroundImageFilename), - mediaByFilename(payload, participationContent.evaluation.imageFilename), mediaByFilename(payload, participationContent.applicationForm.imageFilename), + ...participationContent.awardsGrid.cards.map((card) => mediaByFilename(payload, card.imageFilename)), ]) const { backgroundImageFilename: _heroFilename, ...heroContent } = participationContent.hero - const { imageFilename: _evaluationFilename, ...evaluationContent } = participationContent.evaluation const { imageFilename: _formFilename, ...applicationFormContent } = participationContent.applicationForm + const { cards: awardCards, ...awardsGridContent } = participationContent.awardsGrid await payload.update({ collection: 'pages', @@ -45,12 +45,15 @@ async function main() { }, process: participationContent.process, eligibility: participationContent.eligibility, - evaluation: { - ...evaluationContent, - image: evaluationImage, - }, applicationWays: participationContent.applicationWays, datesBanner: participationContent.datesBanner, + awardsGrid: { + ...awardsGridContent, + cards: awardCards.map(({ imageFilename: _imageFilename, ...card }, index) => ({ + ...card, + image: awardCardImages[index], + })), + }, applicationForm: { ...applicationFormContent, image: formImage, diff --git a/src/scripts/setup-fresh-database.ts b/src/scripts/setup-fresh-database.ts index 12314a7..bb6bc47 100644 --- a/src/scripts/setup-fresh-database.ts +++ b/src/scripts/setup-fresh-database.ts @@ -14,7 +14,7 @@ const orderedScripts = [ path: 'src/scripts/migrate-spa-pages.ts', }, { - label: 'Store header, footer, and site settings defaults', + label: 'Store header, footer, site settings, and application phase defaults', path: 'src/scripts/preload-globals-cms.ts', }, { @@ -65,6 +65,10 @@ const orderedScripts = [ label: 'Preload participation page', path: 'src/scripts/preload-participation-page-cms.ts', }, + { + label: 'Preload participation awards and award posts', + path: 'src/scripts/preload-participation-awards-cms.ts', + }, { label: 'Preload Preisträger index page', path: 'src/scripts/preload-preistraeger-index-page-cms.ts', diff --git a/src/spa/NextApp.tsx b/src/spa/NextApp.tsx index 2c3ee79..1918162 100644 --- a/src/spa/NextApp.tsx +++ b/src/spa/NextApp.tsx @@ -1,10 +1,11 @@ 'use client' -import React, { useEffect, useState } from 'react' +import React from 'react' import Layout from '@/spa/components/layout/Layout' import ScrollToTop from '@/spa/components/layout/ScrollToTop' -import { defaultHeaderData, type SpaFooterData, type SpaHeaderData } from '@/spa/cmsNavigation' +import type { SpaApplicationPhaseData } from '@/spa/applicationPhase' +import { type SpaFooterData, type SpaHeaderData } from '@/spa/cmsNavigation' import { CmsRouteProvider, type CmsRouteData } from '@/spa/cmsRoute' import type { SpaSiteSettingsData } from '@/spa/siteSettings' import About from '@/spa/pages/About' @@ -60,42 +61,20 @@ export default function NextApp({ footer, cmsRoute, siteSettings, + applicationPhase, }: { pathname: string header?: SpaHeaderData footer?: SpaFooterData cmsRoute?: CmsRouteData siteSettings?: SpaSiteSettingsData + applicationPhase?: SpaApplicationPhaseData }) { - const [loading, setLoading] = useState(true) - const headerData = header || defaultHeaderData - - useEffect(() => { - const timer = window.setTimeout(() => setLoading(false), 1500) - return () => window.clearTimeout(timer) - }, []) - - if (loading) { - return ( -
-
-
-
- {headerData.loadingBrand} -
-
-
- {headerData.loadingLabel} -
-
- ) - } - const page = React.createElement(resolvePage(pathname)) return ( <> - + {page} diff --git a/src/spa/applicationPhase.ts b/src/spa/applicationPhase.ts new file mode 100644 index 0000000..0bbad6c --- /dev/null +++ b/src/spa/applicationPhase.ts @@ -0,0 +1,97 @@ +export type SpaApplicationPhaseLink = { + label?: string | null + url?: string | null + to?: string | null +} + +export type SpaApplicationPhaseItem = { + num?: string | null + tag?: string | null + pulse?: boolean | null + phase?: string | null + headline?: string | null + body?: string | null + cta?: SpaApplicationPhaseLink | null + accent?: string | null + bg?: string | null + glow?: string | null + meta?: string | null + successApplications?: string | null + successWinners?: string | null + membershipCta?: SpaApplicationPhaseLink | null +} + +export type SpaApplicationPhaseData = { + activePhase: string + noActionLabel: string + successApplicationsLabel: string + successWinnersLabel: string + phases: SpaApplicationPhaseItem[] +} + +export const defaultApplicationPhaseData: SpaApplicationPhaseData = { + activePhase: '0', + noActionLabel: 'Kein Handlungsbedarf', + successApplicationsLabel: 'Bewerbungen', + successWinnersLabel: 'Preisträger', + phases: [ + { + num: '01', + tag: 'JETZT OFFEN', + pulse: true, + phase: 'Bewerbungsphase 2026', + headline: 'BEWERBEN SIE SICH JETZT.', + body: + 'Die Bewerbungsphase 2026 ist eröffnet – es ist noch nicht zu spät. Reichen Sie Ihre Unterlagen bis zum 30. Juni kostenlos ein und zeigen Sie, was den bayerischen Mittelstand ausmacht.', + cta: { label: 'Jetzt kostenlos bewerben', url: '/teilnahme' }, + accent: '#EFBF04', + bg: '#020A1E', + glow: 'rgba(239,191,4,0.14)', + meta: 'Deadline: 30. Juni 2026', + membershipCta: { label: 'Mitglied werden', url: '/mitglied-werden' }, + }, + { + num: '02', + tag: 'IN AUSWERTUNG', + pulse: true, + phase: 'Auswertungsphase 2026', + headline: 'DIE JURY BEWERTET GERADE.', + body: + 'Die Anmeldephase 2026 ist geschlossen. Unsere unabhängige Expertenjury aus Wissenschaft und Praxis sichtet und bewertet derzeit alle Einreichungen.', + cta: {}, + accent: '#4A8FC9', + bg: '#060D1C', + glow: 'rgba(74,143,201,0.12)', + meta: 'Ergebnis: August 2026', + membershipCta: { label: 'Mitglied werden', url: '/mitglied-werden' }, + }, + { + num: '03', + tag: 'ABGESCHLOSSEN', + pulse: false, + phase: 'Preisverleihung · Oktober 2026', + headline: 'DER BMP 2026 WAR EIN ERFOLG.', + body: + 'Wir danken allen 247 Bewerberinnen und Bewerbern für Mut und Exzellenz. Drei außergewöhnliche Unternehmen wurden in München ausgezeichnet – ein unvergesslicher Abend.', + cta: { label: 'Alle Preisträger ansehen', url: '/preistraeger' }, + accent: '#EFBF04', + bg: '#06090F', + glow: 'rgba(239,191,4,0.08)', + meta: 'Gala · Oktober 2026 · München', + successApplications: '247', + successWinners: '3', + }, + ], +} + +export function normalizeApplicationPhaseData( + value?: Partial | null, +): SpaApplicationPhaseData { + return { + activePhase: value?.activePhase || defaultApplicationPhaseData.activePhase, + noActionLabel: value?.noActionLabel || defaultApplicationPhaseData.noActionLabel, + successApplicationsLabel: value?.successApplicationsLabel || defaultApplicationPhaseData.successApplicationsLabel, + successWinnersLabel: value?.successWinnersLabel || defaultApplicationPhaseData.successWinnersLabel, + phases: value?.phases?.length ? value.phases : defaultApplicationPhaseData.phases, + } +} diff --git a/src/spa/awardArticles.ts b/src/spa/awardArticles.ts new file mode 100644 index 0000000..be6defa --- /dev/null +++ b/src/spa/awardArticles.ts @@ -0,0 +1,186 @@ +export const AWARD_CONTACT_EMAIL = 'info@bmp-bayern.de' + +const mailto = (subject: string) => `mailto:${AWARD_CONTACT_EMAIL}?subject=${encodeURIComponent(subject)}` + +export const awardArticles = [ + { + slug: 'goldene-bavaria', + title: 'Die Goldene Bavaria', + cat: 'Auszeichnung', + date: '30. Juni 2026', + author: 'BMP Redaktion', + authorRole: 'Bayerischer Mittelstandspreis', + readTime: '4 min', + imageFilename: 'goldene-bavaria.png', + imageAlt: 'Goldene Bavaria Illustration', + excerpt: + 'Die höchste Auszeichnung des Bayerischen Mittelstandspreises steht für unternehmerische Exzellenz, gesellschaftliche Verantwortung und den Mut, Zukunft aktiv zu gestalten.', + sections: [ + { + heading: 'Was ist die Goldene Bavaria?', + body: + 'Die Goldene Bavaria ist die bedeutendste Einzelauszeichnung des Bayerischen Mittelstandspreises. Sie steht für unternehmerische Exzellenz, gesellschaftliche Verantwortung und den Mut, Zukunft aktiv zu gestalten. Werte, die den bayerischen Unternehmergeist seit Generationen prägen.', + }, + { + body: + 'Als physische Trophäe verkörpert sie diesen Anspruch auf einzigartige Weise: ein dreidimensionales, maßstabgetreues Abbild der Original-Bavaria auf der Theresienwiese. 30 Zentimeter hoch, in Bronze gegossen und vollständig vergoldet. Ein Stück Bayern, das bleibt.', + }, + { + heading: 'Ein Preis mit Geschichte und Tradition', + body: + 'Die Goldene Bavaria ist ein Wanderpokal. Wer sie erhält, trägt sie nicht nur nach Hause, sondern übernimmt Verantwortung. Im nächsten Jahr übergibt der Vorjahressieger die Trophäe persönlich an den neuen Würdigen. Eine Geste, die Verbundenheit schafft und aus einem Preis eine lebendige Gemeinschaft macht.', + }, + { + heading: 'Neu im Jahr 2026', + body: + 'Erstmals werden in diesem Jahr drei Goldene Bavaria verliehen: der Roland-Berger-Zukunftspreis für visionäre Unternehmensführung, der Bavarian Future Award als Sonderpreis der HAM und ein Sonderpreis für Gesellschaft und Bildung.', + }, + { + heading: 'Wie sieht sie aus?', + body: + 'Die Goldene Bavaria ist kein generisches Pokal-Design. Sie ist ein Kunstobjekt: gegossen nach den exakten dreidimensionalen Daten der weltbekannten Münchner Bavaria-Statue, gefertigt in Bronze und veredelt durch echte Vergoldung.', + }, + { + body: + 'Ein Foto der Goldenen Bavaria zeigen wir nach der feierlichen Erstverleihung am 17. Juli 2026. Aus Wertschätzung gegenüber den ersten drei Preisträgern gebührt ihnen der erste Blick.', + }, + ], + tags: ['Goldene Bavaria', 'Auszeichnung', 'Mittelstand', 'Bayern'], + relatedSlugs: ['roland-berger-zukunftspreis', 'bavarian-future-award'], + card: { + label: 'Auszeichnung 01', + title: 'Goldene\nBavaria', + description: 'Die höchste Auszeichnung des Bayerischen Mittelstandspreises.', + }, + articleCta: { label: 'Artikel lesen', url: '/presse/blog/goldene-bavaria' }, + mailtoCta: { label: 'Kontakt aufnehmen', url: mailto('Interesse an der Goldenen Bavaria') }, + detailSidebarCta: { + heading: 'Zur Goldenen Bavaria', + text: 'Sie haben Fragen zur Auszeichnung oder zur Teilnahme am Bayerischen Mittelstandspreis?', + label: 'Kontakt aufnehmen', + url: mailto('Frage zur Goldenen Bavaria'), + }, + }, + { + slug: 'roland-berger-zukunftspreis', + title: 'Roland-Berger-Zukunftspreis', + cat: 'Auszeichnung', + date: '30. Juni 2026', + author: 'BMP Redaktion', + authorRole: 'Bayerischer Mittelstandspreis', + readTime: '3 min', + imageFilename: 'prof-roland-berger.jpg', + imageAlt: 'Prof. Dr. h.c. Roland Berger', + excerpt: + 'Der Roland-Berger-Zukunftspreis würdigt Menschen, Unternehmen und Initiativen, die Zukunft nicht nur vorhersagen, sondern aktiv gestalten.', + sections: [ + { + heading: 'Zukunft aktiv gestalten', + body: + 'Mit dem Roland-Berger-Zukunftspreis wird 2026 erstmals eine besondere Auszeichnung im Rahmen des Bayerischen Mittelstandspreises vergeben. Der Preis richtet den Blick auf Menschen, Unternehmen und Initiativen, die Zukunft nicht nur vorhersagen, sondern aktiv gestalten.', + }, + { + heading: 'Der Namensgeber', + body: + 'Namensgeber des Preises ist Prof. Dr. h.c. Roland Berger, einer der renommiertesten Unternehmer und Vordenker Europas. Als Gründer der internationalen Strategieberatung Roland Berger sowie stellvertretender Vorsitzender des Stiftungsrats von Wir Eigentümerunternehmer steht er seit Jahrzehnten für unternehmerische Verantwortung, Innovationskraft und zukunftsorientiertes Denken.', + }, + { + heading: 'Wofür der Preis steht', + body: + 'Der Roland-Berger-Zukunftspreis würdigt herausragende Beiträge, die mit Robustheit, Resilienz, Zukunftsfähigkeit, Innovation, Nachhaltigkeit und Verantwortung überzeugen. Ausgezeichnet werden diejenigen, die Wandel aktiv gestalten und als Gestaltungskräfte Impulse für die Zukunft setzen.', + }, + { + heading: 'Besonderer Stellenwert', + body: + 'Die Auszeichnung persönlich von Prof. Dr. h.c. Roland Berger überreicht zu bekommen, ist eine hohe Anerkennung für herausragendes Engagement und wegweisende Leistungen. Der Preis verbindet unternehmerische Exzellenz mit dem Anspruch, nachhaltige Impulse für Wirtschaft und Gesellschaft zu setzen.', + }, + { + body: + 'Da der Roland-Berger-Zukunftspreis 2026 erstmals verliehen wird, folgen weitere Informationen zu Hintergründen, Kriterien und Besonderheiten dieser neuen Auszeichnung.', + }, + ], + tags: ['Roland Berger', 'Zukunftspreis', 'Innovation', 'Verantwortung'], + relatedSlugs: ['goldene-bavaria', 'bavarian-future-award'], + card: { + label: 'Auszeichnung 02', + title: 'Roland-Berger-\nZukunftspreis', + description: 'Für visionäre Unternehmensführung und zukunftsorientiertes Denken.', + }, + articleCta: { label: 'Artikel lesen', url: '/presse/blog/roland-berger-zukunftspreis' }, + mailtoCta: { label: 'Kontakt aufnehmen', url: mailto('Interesse am Roland-Berger-Zukunftspreis') }, + detailSidebarCta: { + heading: 'Zum Zukunftspreis', + text: 'Sie möchten mehr über den Roland-Berger-Zukunftspreis oder eine passende Einreichung erfahren?', + label: 'Kontakt aufnehmen', + url: mailto('Frage zum Roland-Berger-Zukunftspreis'), + }, + }, + { + slug: 'bavarian-future-award', + title: 'Bavarian Future Award', + cat: 'Auszeichnung', + date: '30. Juni 2026', + author: 'BMP Redaktion', + authorRole: 'Bayerischer Mittelstandspreis', + readTime: '3 min', + imageFilename: 'goldene-bavaria.png', + imageAlt: 'Bavarian Future Award Illustration', + excerpt: + 'Der Sonderpreis der Hochschule für angewandtes Management macht vorbildliche Unternehmensnachfolge im bayerischen Mittelstand sichtbar.', + sections: [ + { + heading: 'Sonderpreis der Studierenden', + body: + 'Der Bavarian Future Award ist ein Sonderpreis im Rahmen des Bayerischen Mittelstandspreises und wird von Studierenden des Masterstudiengangs Management (M.A.) der Hochschule für angewandtes Management vergeben.', + }, + { + heading: 'Nachfolge als Zukunftsaufgabe', + body: + 'Der Award zeichnet Unternehmen aus, die ihre Unternehmensnachfolge beispielhaft gestalten und damit die Zukunftsfähigkeit des Mittelstands sichern. Eine erfolgreiche Nachfolge ist weit mehr als die Übergabe von Verantwortung. Sie ist ein strategischer Prozess, der die Grundlage für langfristige Stabilität, Wachstum und unternehmerische Weiterentwicklung schafft.', + }, + { + heading: 'Bewertungsschwerpunkte', + body: + 'Im Mittelpunkt stehen Nachfolgelösungen, die zeigen, wie der Generationswechsel erfolgreich gelingen kann. Bewertet werden frühzeitige strategische Planung, transparente Kommunikation, klares Rollenverständnis, aktive Einbindung von Mitarbeitenden und die Fähigkeit, bewährte Traditionen mit neuen Impulsen zu verbinden.', + }, + { + body: + 'Unternehmen, die diese Faktoren berücksichtigen, schaffen Vertrauen, sichern wertvolles Know-how und legen den Grundstein für nachhaltigen Erfolg über Generationen hinweg.', + }, + { + heading: 'Sichtbarkeit für vorbildliche Lösungen', + body: + 'Der Bavarian Future Award macht diese Nachfolgelösungen sichtbar und würdigt Unternehmen, die Verantwortung übernehmen, Wandel aktiv gestalten und damit ein wichtiges Zeichen für die Zukunft des bayerischen Mittelstands setzen.', + }, + ], + tags: ['Bavarian Future Award', 'HAM', 'Nachfolge', 'Studentenpreis'], + relatedSlugs: ['goldene-bavaria', 'roland-berger-zukunftspreis'], + card: { + label: 'Auszeichnung 03', + title: 'Studentenpreis /\nBavarian Future Award', + description: 'Der Sonderpreis der HAM für vorbildlich gestaltete Unternehmensnachfolge.', + }, + articleCta: { label: 'Artikel lesen', url: '/presse/blog/bavarian-future-award' }, + mailtoCta: { label: 'Kontakt aufnehmen', url: mailto('Interesse am Bavarian Future Award') }, + detailSidebarCta: { + heading: 'Zum Future Award', + text: 'Sie haben Fragen zum Studentenpreis oder möchten ein Unternehmen ins Gespräch bringen?', + label: 'Kontakt aufnehmen', + url: mailto('Frage zum Bavarian Future Award'), + }, + }, +] + +export const participationAwardsGrid = { + eyebrow: 'Auszeichnungen 2026', + heading: 'DREI AUSZEICHNUNGEN.\nEIN ANSPRUCH.', + description: + 'Direkt im Bewerbungsjahr 2026 stehen drei Auszeichnungen im Fokus: die Goldene Bavaria, der Roland-Berger-Zukunftspreis und der Studentenpreis Bavarian Future Award.', + cards: awardArticles.map(({ imageFilename, imageAlt, card, articleCta, mailtoCta }) => ({ + ...card, + imageFilename, + imageAlt, + articleCta, + mailtoCta, + })), +} diff --git a/src/spa/blogDetailContent.ts b/src/spa/blogDetailContent.ts index 1d9bed3..7612663 100644 --- a/src/spa/blogDetailContent.ts +++ b/src/spa/blogDetailContent.ts @@ -20,6 +20,7 @@ export const blogDetailContent = { tag: 'Presse', }, categoryColors: { + Auszeichnung: '#111D55', Innovation: '#2563EB', Engagement: '#16A34A', Wirtschaft: '#9333EA', diff --git a/src/spa/cmsNavigation.ts b/src/spa/cmsNavigation.ts index d767033..4455ac1 100644 --- a/src/spa/cmsNavigation.ts +++ b/src/spa/cmsNavigation.ts @@ -3,7 +3,7 @@ import type { Footer, Header, Media } from '@/payload-types' export type SpaIconName = 'instagram' | 'linkedin' | 'facebook' export type SpaLink = { label: string; path: string } export type SpaSocialLink = { label: string; href: string; icon: SpaIconName } -export type SpaCtaLink = SpaLink & { variant?: 'primary' | 'secondary' | 'subtle' | 'upload' } +export type SpaCtaLink = SpaLink & { variant?: 'primary' | 'secondary' | 'subtle' | 'login' } export type SpaMedia = { url?: string; alt?: string } export type SpaHeaderNavItem = SpaLink & { @@ -23,13 +23,10 @@ export type SpaHeaderData = { closeLabel: string dialogLabel: string overviewLabel: string - loadingBrand: string - loadingLabel: string navItems: SpaHeaderNavItem[] secondaryLinks: SpaLink[] socialLinks: SpaSocialLink[] ctas: SpaCtaLink[] - languages: string[] } export type SpaFooterLinkColumn = { label: string; links: SpaLink[] } @@ -69,9 +66,6 @@ export const defaultHeaderData: SpaHeaderData = { closeLabel: 'Menü schließen', dialogLabel: 'Navigation', overviewLabel: 'Überblick', - loadingBrand: 'BMP', - loadingLabel: 'Exzellenz wird geladen...', - languages: ['DE', 'EN'], socialLinks: defaultSocialLinks, navItems: [ { @@ -85,7 +79,6 @@ export const defaultHeaderData: SpaHeaderData = { key: 'teilnahme', label: 'Ihr Weg zum Preis', path: '/teilnahme', subLabel: 'IHR WEG ZUM PREIS', sub: [ { label: 'Teilnahmevoraussetzungen', path: '/teilnahme#voraussetzungen' }, - { label: 'Kriterien & Bewertung', path: '/teilnahme#kriterien' }, { label: 'Fristen & Termine', path: '/teilnahme#fristen' }, { label: 'Bewerbungsformular', path: '/teilnahme#bewerben' }, ], @@ -124,7 +117,7 @@ export const defaultHeaderData: SpaHeaderData = { ctas: [ { label: 'Jetzt bewerben', path: '/teilnahme#bewerben', variant: 'primary' }, { label: 'Mitglied werden', path: '/mitglied-werden', variant: 'secondary' }, - { label: 'Formular hochladen', path: '/formular-hochladen', variant: 'upload' }, + { label: 'Login', path: '/admin', variant: 'login' }, ], } @@ -173,7 +166,25 @@ const mediaToSpa = (value: unknown, fallback?: SpaMedia): SpaMedia | undefined = return fallback } -type HeaderLanguage = string | { label?: string } +const isParticipationCriteriaLink = (link?: { label?: string; path?: string }) => { + const normalizedLabel = link?.label?.trim().toLowerCase() + + return ( + link?.path === '/teilnahme#kriterien' || + normalizedLabel === 'kriterien & bewertung' || + normalizedLabel === 'kriterien und bewertung' + ) +} + +const withoutParticipationCriteriaLink = (items: SpaHeaderNavItem[]) => + items.map((item) => + item.key === 'teilnahme' + ? { + ...item, + sub: item.sub?.filter((subItem) => !isParticipationCriteriaLink(subItem)), + } + : item, + ) type FooterPartnerLogo = { alt?: string @@ -181,13 +192,15 @@ type FooterPartnerLogo = { } export function normalizeHeaderData(header?: Partial
): SpaHeaderData { + const navItems = header?.navItems?.length + ? (header.navItems as unknown as SpaHeaderNavItem[]) + : defaultHeaderData.navItems + return { ...defaultHeaderData, ...header, logo: mediaToSpa(header?.logo, defaultHeaderData.logo), - navItems: header?.navItems?.length - ? (header.navItems as unknown as SpaHeaderNavItem[]) - : defaultHeaderData.navItems, + navItems: withoutParticipationCriteriaLink(navItems), secondaryLinks: header?.secondaryLinks?.length ? (header.secondaryLinks as unknown as SpaLink[]) : defaultHeaderData.secondaryLinks, @@ -195,11 +208,6 @@ export function normalizeHeaderData(header?: Partial
): SpaHeaderData { ? (header.socialLinks as unknown as SpaSocialLink[]) : defaultHeaderData.socialLinks, ctas: header?.ctas?.length ? (header.ctas as unknown as SpaCtaLink[]) : defaultHeaderData.ctas, - languages: header?.languages?.length - ? (header.languages as HeaderLanguage[]) - .map((item) => (typeof item === 'string' ? item : item.label)) - .filter((label): label is string => Boolean(label)) - : defaultHeaderData.languages, } } diff --git a/src/spa/cmsRoute.tsx b/src/spa/cmsRoute.tsx index 89ecfb7..7b907ca 100644 --- a/src/spa/cmsRoute.tsx +++ b/src/spa/cmsRoute.tsx @@ -2,6 +2,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' @@ -24,6 +25,7 @@ export type CmsRouteData = { doc: CmsRouteDoc lists?: Partial> siteSettings?: SpaSiteSettingsData + applicationPhase?: SpaApplicationPhaseData } const CmsRouteContext = createContext(undefined) @@ -39,3 +41,7 @@ export function useCmsRoute() { export function useCmsCollection(collection: CmsRouteCollection) { return useCmsRoute()?.lists?.[collection] || [] } + +export function useApplicationPhase() { + return useCmsRoute()?.applicationPhase +} diff --git a/src/spa/components/layout/Layout.tsx b/src/spa/components/layout/Layout.tsx index a3c7f72..eae996b 100644 --- a/src/spa/components/layout/Layout.tsx +++ b/src/spa/components/layout/Layout.tsx @@ -4,7 +4,7 @@ import Image from '@/spa/components/ui/UnoptimizedImage' import React, { useState, useEffect, useRef } from 'react'; import { Link, useLocation } from '@/spa/router'; -import { ArrowRight, Upload } from 'lucide-react'; +import { ArrowRight } from 'lucide-react'; import LoadingScreen from '@/spa/components/ui/LoadingScreen'; import { useIsMobile } from '@/spa/hooks/useIsMobile'; import { @@ -36,6 +36,10 @@ const SEP = 'rgba(239,191,4,0.2)'; const LINE = 'rgba(239,191,4,0.35)'; const FF_DISPLAY = '"IBM Plex Sans", sans-serif'; const FF_BODY = '"Inter", sans-serif'; +const HIDE_MEMBERSHIP_FOOTER_ENTRY = true; + +const isMembershipFooterLink = (link?: { label?: string; path?: string }) => + link?.path === '/mitglied-werden' || link?.label?.trim().toLowerCase() === 'mitglied werden'; /* ── SocialLink helper ─────────────────────────────────── */ const SocialLink: React.FC<{ href:string; icon:SpaIconName; label:string }> = ({ href, icon, label }) => { @@ -54,24 +58,29 @@ const SocialLink: React.FC<{ href:string; icon:SpaIconName; label:string }> = ({ const Layout: React.FC = ({ children, header = defaultHeaderData, footer = defaultFooterData }) => { const NAV = header.navItems; const SECONDARY = header.secondaryLinks; - const SOCIAL = header.socialLinks; + const linkedInHeaderSocial = header.socialLinks.filter((item) => item.icon === 'linkedin'); + const linkedInFooterSocial = footer.socialLinks.filter((item) => item.icon === 'linkedin'); + const HEADER_SOCIAL = linkedInHeaderSocial.length + ? linkedInHeaderSocial + : defaultHeaderData.socialLinks.filter((item) => item.icon === 'linkedin'); + const FOOTER_SOCIAL = linkedInFooterSocial.length + ? linkedInFooterSocial + : defaultFooterData.socialLinks.filter((item) => item.icon === 'linkedin'); const logo = header.logo?.url || defaultHeaderData.logo?.url || ''; const footerLogo = footer.logo?.url || defaultFooterData.logo?.url || ''; const headerCtas = header.ctas; const footerCtas = footer.ctas; const fallbackHeaderCtas = defaultHeaderData.ctas; const fallbackFooterCtas = defaultFooterData.ctas; + const footerMembershipCta = footerCtas[1] || fallbackFooterCtas[1]; + const showFooterMembershipCta = + !HIDE_MEMBERSHIP_FOOTER_ENTRY || !isMembershipFooterLink(footerMembershipCta); const [open, setOpen] = useState(false); // desktop overlay const [activeKey, setActive] = useState(null); // desktop hover subnav const [mobileOpen, setMobileOpen] = useState(false); // mobile sidebar overlay const [expandKey, setExpand] = useState(null); // mobile accordion - const [lang, setLang] = useState(header.languages[0] || defaultHeaderData.languages[0]); const [mounted, setMounted] = useState(false); - const [showLoader, setShowLoader] = useState(() => { - if (typeof window === 'undefined') return false; - sessionStorage.removeItem('bmp-intro-seen'); - return true; - }); + const [showLoader, setShowLoader] = useState(true); const [formVisible, setFormVisible] = useState(false); const location = useLocation(); const firstLinkRef = useRef(null); @@ -220,24 +229,10 @@ const Layout: React.FC = ({ children, header = defaultHeaderData, f
- {/* RIGHT – social + lang */} -
+ {/* RIGHT – social */} +
- {SOCIAL.map(s => )} -
-
-
- {header.languages.map((l, i) => ( - - {i===1 && |} - - - ))} + {HEADER_SOCIAL.map(s => )}
@@ -326,7 +321,7 @@ const Layout: React.FC = ({ children, header = defaultHeaderData, f transition:'opacity .2s ease, transform .2s ease', pointerEvents: activeKey===item.key ? 'all' : 'none', }}> -
+
{header.overviewLabel}
@@ -352,20 +347,8 @@ const Layout: React.FC = ({ children, header = defaultHeaderData, f
-
- {header.languages.map((l,i) => ( - - {i===1 && |} - - - ))} -
- {SOCIAL.map(s => )} + {HEADER_SOCIAL.map(s => )}
@@ -385,39 +368,34 @@ const Layout: React.FC = ({ children, header = defaultHeaderData, f onMouseEnter={e=>{ e.currentTarget.style.background='#FFD130'; e.currentTarget.style.boxShadow='0 0 18px rgba(239,191,4,0.65), 0 0 40px rgba(239,191,4,0.3)'; }} onMouseLeave={e=>{ e.currentTarget.style.background='#EFBF04'; e.currentTarget.style.boxShadow='none'; }} >{headerCtas[0]?.label || fallbackHeaderCtas[0].label} - setOpen(false)} - style={{ display:'inline-block', background:'transparent', color:MUTED, fontSize: 15, fontWeight:700, textTransform:'uppercase', letterSpacing:'.12em', padding:'10px 24px', textDecoration:'none', transition:'border-color .2s, color .2s', borderRadius:0, fontFamily:FF_DISPLAY, border:'1.5px solid rgba(239,191,4,0.35)' }} - onMouseEnter={e=>{ e.currentTarget.style.borderColor='#EFBF04'; e.currentTarget.style.color='#EFBF04'; }} - onMouseLeave={e=>{ e.currentTarget.style.borderColor='rgba(239,191,4,0.35)'; e.currentTarget.style.color=MUTED; }} - >{headerCtas[1]?.label || fallbackHeaderCtas[1].label}
setOpen(false)} style={{ display:'flex', alignItems:'center', gap:10, - background:'rgba(255,255,255,0.04)', - color:'rgba(255,255,255,0.45)', + background:'transparent', + color:MUTED, fontSize:11, fontWeight:700, textTransform:'uppercase', letterSpacing:'.14em', padding:'10px 18px', textDecoration:'none', fontFamily:FF_DISPLAY, - border:'1px dashed rgba(255,255,255,0.15)', + border:'1px solid rgba(239,191,4,0.28)', transition:'color .2s, border-color .2s, background .2s', }} onMouseEnter={e=>{ - e.currentTarget.style.color='#fff'; - e.currentTarget.style.borderColor='rgba(255,255,255,0.4)'; - e.currentTarget.style.background='rgba(255,255,255,0.07)'; + e.currentTarget.style.color=GOLD; + e.currentTarget.style.borderColor='rgba(239,191,4,0.7)'; + e.currentTarget.style.background='rgba(239,191,4,0.05)'; }} onMouseLeave={e=>{ - e.currentTarget.style.color='rgba(255,255,255,0.45)'; - e.currentTarget.style.borderColor='rgba(255,255,255,0.15)'; - e.currentTarget.style.background='rgba(255,255,255,0.04)'; + e.currentTarget.style.color=MUTED; + e.currentTarget.style.borderColor='rgba(239,191,4,0.28)'; + e.currentTarget.style.background='transparent'; }} > - {headerCtas[2]?.label || fallbackHeaderCtas[2].label} + {headerCtas[2]?.label || fallbackHeaderCtas[2].label}
@@ -560,31 +538,16 @@ const Layout: React.FC = ({ children, header = defaultHeaderData, f setMobileOpen(false)} style={{ display:'flex', alignItems:'center', justifyContent:'center', minHeight:52, background:GOLD, color:'#101828', fontSize:14, fontWeight:700, textTransform:'uppercase', letterSpacing:'.12em', textDecoration:'none', fontFamily:FF_DISPLAY }} >{headerCtas[0]?.label || fallbackHeaderCtas[0].label} - setMobileOpen(false)} - style={{ display:'flex', alignItems:'center', justifyContent:'center', minHeight:50, background:'transparent', color:'#fff', fontSize:14, fontWeight:700, textTransform:'uppercase', letterSpacing:'.12em', textDecoration:'none', fontFamily:FF_DISPLAY, border:`1.5px solid ${LINE}` }} - >{headerCtas[1]?.label || fallbackHeaderCtas[1].label} setMobileOpen(false)} - style={{ display:'flex', alignItems:'center', justifyContent:'center', gap:8, minHeight:46, background:'none', color:'rgba(255,255,255,0.5)', fontSize:11, fontWeight:700, textTransform:'uppercase', letterSpacing:'.14em', textDecoration:'none', fontFamily:FF_DISPLAY, border:'1px dashed rgba(255,255,255,0.2)' }} - > {headerCtas[2]?.label || fallbackHeaderCtas[2].label} + style={{ display:'flex', alignItems:'center', justifyContent:'center', minHeight:46, background:'none', color:MUTED, fontSize:11, fontWeight:700, textTransform:'uppercase', letterSpacing:'.14em', textDecoration:'none', fontFamily:FF_DISPLAY, border:'1px solid rgba(239,191,4,0.28)' }} + >{headerCtas[2]?.label || fallbackHeaderCtas[2].label}
- {/* Footer zone: lang + social + secondary */} + {/* Footer zone: social + secondary */}
- {/* Lang + social row */} -
-
- {header.languages.map((l, i) => ( - - {i === 1 && |} - - - ))} -
-
- {SOCIAL.map(s => )} -
+ {/* Social row */} +
+ {HEADER_SOCIAL.map(s => )}
{/* Secondary links */}
@@ -770,31 +733,33 @@ const Layout: React.FC = ({ children, header = defaultHeaderData, f }} >{footerCtas[0]?.label || fallbackFooterCtas[0].label} - { - e.currentTarget.style.borderColor = GOLD; - e.currentTarget.style.color = GOLD; - }} - onMouseLeave={e => { - e.currentTarget.style.borderColor = 'rgba(239,191,4,0.35)'; - e.currentTarget.style.color = MUTED; - }} - >{footerCtas[1]?.label || fallbackFooterCtas[1].label} + {showFooterMembershipCta && ( + { + e.currentTarget.style.borderColor = GOLD; + e.currentTarget.style.color = GOLD; + }} + onMouseLeave={e => { + e.currentTarget.style.borderColor = 'rgba(239,191,4,0.35)'; + e.currentTarget.style.color = MUTED; + }} + >{footerCtas[1]?.label || fallbackFooterCtas[1].label} + )} = ({ children, header = defaultHeaderData, f {footer.copyright}

- {SOCIAL.map(s => )} + {FOOTER_SOCIAL.map(s => )}
diff --git a/src/spa/components/legal/LegalPage.tsx b/src/spa/components/legal/LegalPage.tsx index b24bc64..87bd14e 100644 --- a/src/spa/components/legal/LegalPage.tsx +++ b/src/spa/components/legal/LegalPage.tsx @@ -9,7 +9,7 @@ import { Link } from '@/spa/router' const ANTHRA = '#1A2030' const NAVY = '#111D55' const GOLD = '#EFBF04' -const CREAM = '#EFE5E3' +const PAGE_BG = '#fff' const FF = '"IBM Plex Sans", sans-serif' const FB = '"Inter", sans-serif' @@ -51,7 +51,7 @@ export default function LegalPage({ content, cmsKey }: { content: LegalPageConte })) return ( -
+
) => { const scrollRef = React.useRef(null) @@ -74,6 +75,7 @@ export const ContainerScroll = ({
{children} @@ -126,7 +128,7 @@ export const ProcessCard: React.FC = ({ const { scrollYProgress } = useContainerScrollContext() const start = index / itemsLength const end = start + 1 / itemsLength - const { innerWidth } = window + const innerWidth = typeof window === "undefined" ? 0 : window.innerWidth const [ref, { width }] = useMeasure() const x = useTransform( diff --git a/src/spa/homeContent.ts b/src/spa/homeContent.ts index 24109a6..c25d6cf 100644 --- a/src/spa/homeContent.ts +++ b/src/spa/homeContent.ts @@ -61,60 +61,6 @@ export const homeContent = { '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.', cta: { label: 'Mehr über den Preis', url: '/der-bmp' }, }, - status: { - activePhase: '0', - noActionLabel: 'Kein Handlungsbedarf', - successApplicationsLabel: 'Bewerbungen', - successWinnersLabel: 'Preisträger', - phases: [ - { - num: '01', - tag: 'JETZT OFFEN', - pulse: true, - phase: 'Bewerbungsphase 2026', - headline: 'BEWERBEN SIE SICH JETZT.', - body: - 'Die Bewerbungsphase 2026 ist eröffnet – es ist noch nicht zu spät. Reichen Sie Ihre Unterlagen bis zum 30. Juni kostenlos ein und zeigen Sie, was den bayerischen Mittelstand ausmacht.', - cta: { label: 'Jetzt kostenlos bewerben', url: '/teilnahme' }, - accent: '#EFBF04', - bg: '#020A1E', - glow: 'rgba(239,191,4,0.14)', - meta: 'Deadline: 30. Juni 2026', - membershipCta: { label: 'Mitglied werden', url: '/mitglied-werden' }, - }, - { - num: '02', - tag: 'IN AUSWERTUNG', - pulse: true, - phase: 'Auswertungsphase 2026', - headline: 'DIE JURY BEWERTET GERADE.', - body: - 'Die Anmeldephase 2026 ist geschlossen. Unsere unabhängige Expertenjury aus Wissenschaft und Praxis sichtet und bewertet derzeit alle Einreichungen.', - cta: {}, - accent: '#4A8FC9', - bg: '#060D1C', - glow: 'rgba(74,143,201,0.12)', - meta: 'Ergebnis: August 2026', - membershipCta: { label: 'Mitglied werden', url: '/mitglied-werden' }, - }, - { - num: '03', - tag: 'ABGESCHLOSSEN', - pulse: false, - phase: 'Preisverleihung · Oktober 2026', - headline: 'DER BMP 2026 WAR EIN ERFOLG.', - body: - 'Wir danken allen 247 Bewerberinnen und Bewerbern für Mut und Exzellenz. Drei außergewöhnliche Unternehmen wurden in München ausgezeichnet – ein unvergesslicher Abend.', - cta: { label: 'Alle Preisträger ansehen', url: '/preistraeger' }, - accent: '#EFBF04', - bg: '#06090F', - glow: 'rgba(239,191,4,0.08)', - meta: 'Gala · Oktober 2026 · München', - successApplications: '247', - successWinners: '3', - }, - ], - }, winners: { eyebrow: 'Success Stories', heading: 'DIE BESTEN UNTERNEHMEN IN BAYERN', diff --git a/src/spa/pages/About.tsx b/src/spa/pages/About.tsx index 22b2274..ba0a8f8 100644 --- a/src/spa/pages/About.tsx +++ b/src/spa/pages/About.tsx @@ -16,6 +16,7 @@ const FB = '"Inter", sans-serif' const NAVY = '#111D55' const GOLD = '#EFBF04' const CREAM = '#E4E2E3' +const HIDE_MEMBERSHIP_ABOUT_CTA = true type AboutCms = Partial & { hero?: Partial & { backgroundImage?: unknown } @@ -36,6 +37,12 @@ const fallbackText = (value: unknown, fallback: string) => (typeof value === 'st const fallbackArray = (value: unknown, fallback: T[]) => (Array.isArray(value) && value.length ? (value as T[]) : fallback) +const isMembershipCta = (cta?: { label?: string | null; url?: string | null } | null) => { + const normalizedLabel = cta?.label?.trim().toLowerCase() + + return cta?.url === '/mitglied-werden' || normalizedLabel === 'mitglied werden' || normalizedLabel === 'vereinsmitglied werden' +} + function Lines({ text }: { text: string }) { return ( <> @@ -117,6 +124,7 @@ const About: React.FC = () => { const goals = { ...aboutContent.goals, ...(cms.goals || {}) } const values = { ...aboutContent.values, ...(cms.values || {}) } const cta = { ...aboutContent.cta, ...(cms.cta || {}) } + const showSecondaryCta = !HIDE_MEMBERSHIP_ABOUT_CTA || !isMembershipCta(cta.secondaryCta) const highlightFallbackImage = mediaUrl( highlights.fallbackImage, `/images/${aboutContent.highlights.fallbackImageFilename}`, @@ -359,7 +367,7 @@ const About: React.FC = () => {
-
+
{fallbackText(goals.eyebrow, aboutContent.goals.eyebrow)}

@@ -423,17 +431,19 @@ const About: React.FC = () => { > {fallbackText(cta.primaryCta?.label, aboutContent.cta.primaryCta.label)} -
- {fallbackText(cta.secondaryPrefix, aboutContent.cta.secondaryPrefix)} - { e.currentTarget.style.color = '#EFBF04'; e.currentTarget.style.borderBottomColor = '#EFBF04' }} - onMouseLeave={(e) => { e.currentTarget.style.color = 'rgba(239,191,4,0.7)'; e.currentTarget.style.borderBottomColor = 'rgba(239,191,4,0.3)' }} - > - {fallbackText(cta.secondaryCta?.label, aboutContent.cta.secondaryCta.label)} - -
+ {showSecondaryCta && ( +
+ {fallbackText(cta.secondaryPrefix, aboutContent.cta.secondaryPrefix)} + { e.currentTarget.style.color = '#EFBF04'; e.currentTarget.style.borderBottomColor = '#EFBF04' }} + onMouseLeave={(e) => { e.currentTarget.style.color = 'rgba(239,191,4,0.7)'; e.currentTarget.style.borderBottomColor = 'rgba(239,191,4,0.3)' }} + > + {fallbackText(cta.secondaryCta?.label, aboutContent.cta.secondaryCta.label)} + +
+ )}

diff --git a/src/spa/pages/BlogDetail.tsx b/src/spa/pages/BlogDetail.tsx index 8b28865..6d829d9 100644 --- a/src/spa/pages/BlogDetail.tsx +++ b/src/spa/pages/BlogDetail.tsx @@ -11,7 +11,7 @@ import Image from '@/spa/components/ui/UnoptimizedImage' const NAVY = '#111D55'; const GOLD = '#EFBF04'; -const CREAM = '#EFE5E3'; +const PAGE_BG = '#fff'; const INK = '#3A3A3A'; const FF = '"IBM Plex Sans", sans-serif'; const FB = '"Inter", sans-serif'; @@ -81,10 +81,21 @@ export default function BlogDetail() { const metaCopy = detail.metaCopy || blogDetailContent.meta; const sidebarCta = detail.sidebarCta || blogDetailContent.sidebarCta; const relatedCopy = detail.related || blogDetailContent.related; + const sidebarCtaUrl = fallbackText(sidebarCta.url, blogDetailContent.sidebarCta.url); + const sidebarCtaIsExternal = /^(mailto:|tel:|https?:)/.test(sidebarCtaUrl); + const sidebarCtaStyle: React.CSSProperties = { + display: 'flex', alignItems: 'center', justifyContent: 'center', gap: 8, + padding: '13px 20px', + background: NAVY, color: '#fff', + fontFamily: FF, fontSize: 14, fontWeight: 700, + textTransform: 'uppercase', letterSpacing: '0.1em', + textDecoration: 'none', + transition: 'background 0.15s', + }; if (!article) { return ( -
+

{fallbackText(notFound.title, blogDetailContent.notFound.title)}

{fallbackText(notFound.backLabel, blogDetailContent.notFound.backLabel)} @@ -177,7 +188,7 @@ export default function BlogDetail() { {/* ── ARTICLE BODY ─────────────────────────────────────────────────── */} -
+
{/* LEFT – article text */} @@ -263,22 +274,25 @@ export default function BlogDetail() {

{fallbackText(sidebarCta.text, blogDetailContent.sidebarCta.text)}

- (e.currentTarget.style.background = GOLD)} - onMouseLeave={e => (e.currentTarget.style.background = NAVY)} - > - {fallbackText(sidebarCta.label, blogDetailContent.sidebarCta.label)} - + {sidebarCtaIsExternal ? ( + (e.currentTarget.style.background = GOLD)} + onMouseLeave={e => (e.currentTarget.style.background = NAVY)} + > + {fallbackText(sidebarCta.label, blogDetailContent.sidebarCta.label)} + + ) : ( + (e.currentTarget.style.background = GOLD)} + onMouseLeave={e => (e.currentTarget.style.background = NAVY)} + > + {fallbackText(sidebarCta.label, blogDetailContent.sidebarCta.label)} + + )}
diff --git a/src/spa/pages/Home.tsx b/src/spa/pages/Home.tsx index 90195c5..fe113dd 100644 --- a/src/spa/pages/Home.tsx +++ b/src/spa/pages/Home.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react'; +import React, { useEffect, useRef, useState } from 'react'; import { Button } from '@/spa/components/ui/button'; import { Play, ChevronRight, X, Star } from 'lucide-react'; import { Link } from '@/spa/router'; @@ -9,17 +9,86 @@ import TestimonialsSection from '@/spa/components/TestimonialsSection'; import MunichSkylineBg from '@/spa/components/ui/munich-skyline-bg'; import { useIsMobile } from '@/spa/hooks/useIsMobile'; import Image from '@/spa/components/ui/UnoptimizedImage' -import { useCmsCollection, useCmsRoute } from '@/spa/cmsRoute' +import type { SpaApplicationPhaseData, SpaApplicationPhaseItem } from '@/spa/applicationPhase' +import { useApplicationPhase, useCmsCollection, useCmsRoute } from '@/spa/cmsRoute' import { mediaAlt, mediaUrl } from '@/spa/cmsMediaField' import { homeContent } from '@/spa/homeContent' const FF = '"IBM Plex Sans", sans-serif'; type CmsRecord = Record; -type HomeCms = Record; -type StatusPhase = HomeCms & { - cta?: { label?: string; to?: string; url?: string } | null; - membershipCta?: { label?: string; to?: string; url?: string } | null; +type CmsLink = { label?: string | null; to?: string | null; url?: string | null }; +type HomeHeroCms = { + backgroundImage?: unknown; + badge?: string | null; + description?: string | null; + headingAccent?: string | null; + headingLine1?: string | null; + imageAlt?: string | null; + partners?: unknown; + partnersLabel?: string | null; + primaryCta?: CmsLink | null; + secondaryCta?: CmsLink | null; + videoLabel?: string | null; +}; +type HomeSectionCms = CmsRecord & { + awardCaption?: string | null; + awardImage?: unknown; + awardImageAlt?: string | null; + benefits?: unknown; + body?: string | null; + cardFallbackTitle?: string | null; + criteria?: unknown; + cta?: CmsLink | null; + eyebrow?: string | null; + fallbackImage?: unknown; + featured?: unknown; + footnote?: string | null; + footnoteStrong?: string | null; + formEyebrow?: string | null; + formTitle?: string | null; + heading?: string | null; + hoverLabel?: string | null; + image?: unknown; + imageAlt?: string | null; + imageLabel?: string | null; + items?: unknown; + note?: string | null; + quote?: string | null; + stats?: unknown; +}; +type HomeVideoModalCms = { + closeLabel?: string | null; + description?: string | null; + title?: string | null; + video?: unknown; +}; +type HomeTestimonialsCms = { + desktopHeading?: string | null; + eyebrow?: string | null; + heading?: string | null; + items?: Array> | null; + nextLabel?: string | null; + previousLabel?: string | null; + slideLabelPrefix?: string | null; + yearPrefix?: string | null; +}; +type HomeCms = { + application?: HomeSectionCms; + benefits?: HomeSectionCms; + form?: Partial; + hero?: HomeHeroCms; + intro?: HomeSectionCms; + quickCheck?: HomeSectionCms; + testimonials?: HomeTestimonialsCms; + videoModal?: HomeVideoModalCms; + winners?: HomeSectionCms; +}; +type RenderedStatusPhase = Omit & { + accent: string; + bg: string; + cta?: { label: string; to: string } | null; + membershipCta?: { label: string; to: string } | null; }; type WinnerCardData = CmsRecord & { id?: string | number; @@ -41,6 +110,13 @@ const fallbackText = (value: unknown, fallback: string) => const fallbackArray = (value: unknown, fallback: readonly T[]) => Array.isArray(value) && value.length > 0 ? (value as T[]) : fallback; +const HIDE_MEMBERSHIP_HOME_HERO_CTA = true; + +const isMembershipCta = (cta?: { label?: string; url?: string; to?: string } | null) => + cta?.url === '/mitglied-werden' || + cta?.to === '/mitglied-werden' || + cta?.label?.trim().toLowerCase() === 'mitglied werden'; + function Lines({ text }: { text: string }) { return <>{text.split('\n').map((line, i) => {i > 0 &&
}{line}
)}; } @@ -108,6 +184,7 @@ function HomeWinnerCard({ const Home: React.FC = () => { const [showVideo, setShowVideo] = useState(false); + const videoRef = useRef(null); const isMobile = useIsMobile(); const home = (useCmsRoute()?.doc?.home || {}) as HomeCms; const hero = home.hero || {}; @@ -118,8 +195,14 @@ const Home: React.FC = () => { const application = home.application || {}; const form = home.form || {}; const videoModal = home.videoModal || {}; + const applicationPhase = useApplicationPhase(); const cmsPreistraeger = useCmsCollection('preistraeger'); const selectedWinners = fallbackArray(winnersSection.featured, []); + const heroSecondaryCta = { + label: fallbackText(hero.secondaryCta?.label, homeContent.hero.secondaryCta.label), + url: fallbackText(hero.secondaryCta?.url, homeContent.hero.secondaryCta.url), + }; + const showHeroSecondaryCta = !HIDE_MEMBERSHIP_HOME_HERO_CTA || !isMembershipCta(heroSecondaryCta); const selectedWinnerDocs = selectedWinners .map((selected) => { const selectedRecord = selected as { id?: string | number } @@ -136,6 +219,16 @@ const Home: React.FC = () => { const benefitItems = fallbackArray(benefits.items, homeContent.benefits.items); const applicationBenefits = fallbackArray(application.benefits, homeContent.application.benefits); const winnerFallbackImage = mediaUrl(winnersSection.fallbackImage, `/images/${homeContent.winners.fallbackImageFilename}`); + const videoTitle = fallbackText(videoModal.title, homeContent.videoModal.title); + const videoSrc = mediaUrl(videoModal.video, ''); + + useEffect(() => { + if (!showVideo || !videoSrc) return; + + videoRef.current?.play().catch(() => { + // Browser autoplay rules can still require the native control click. + }); + }, [showVideo, videoSrc]); return (
@@ -177,24 +270,27 @@ const Home: React.FC = () => { {fallbackText(hero.primaryCta?.label, homeContent.hero.primaryCta.label)}
- { (e.currentTarget as HTMLElement).style.borderColor = '#EFBF04'; (e.currentTarget as HTMLElement).style.color = '#EFBF04'; }} - onMouseLeave={e => { (e.currentTarget as HTMLElement).style.borderColor = 'rgba(255,255,255,0.35)'; (e.currentTarget as HTMLElement).style.color = 'rgba(255,255,255,0.85)'; }} - > - {fallbackText(hero.secondaryCta?.label, homeContent.hero.secondaryCta.label)} - - + {showHeroSecondaryCta && ( + { (e.currentTarget as HTMLElement).style.borderColor = '#EFBF04'; (e.currentTarget as HTMLElement).style.color = '#EFBF04'; }} + onMouseLeave={e => { (e.currentTarget as HTMLElement).style.borderColor = 'rgba(255,255,255,0.35)'; (e.currentTarget as HTMLElement).style.color = 'rgba(255,255,255,0.85)'; }} + > + {heroSecondaryCta.label} + + )} +
@@ -221,7 +317,7 @@ const Home: React.FC = () => {
{/* Left (desktop) / Bottom (mobile) – text block (light bg, dark text) */} -
+
{/* Eyebrow + heading – desktop only (on mobile these are overlaid on the image) */} {!isMobile && ( <> @@ -272,7 +368,7 @@ const Home: React.FC = () => { {/* Overlay: mobile = navy shadow bottom-left (for the heading); desktop = leftward fade into text bg */}
+ : 'linear-gradient(to left, transparent 40%, #fff 100%)' }} /> {/* Heading overlay – mobile only */} {isMobile && (
@@ -366,7 +462,7 @@ const Home: React.FC = () => { {/* Status Phase Slider */} - + {/* Winners Grid – neue Preisträger-Übersicht */}
@@ -419,8 +515,8 @@ const Home: React.FC = () => {
- {/* Left – text on cream */} -
+ {/* Left – text on white */} +
{!isMobile && ( <> {fallbackText(benefits.eyebrow, homeContent.benefits.eyebrow)} @@ -436,7 +532,7 @@ const Home: React.FC = () => {
(e.currentTarget.style.background = '#EAE7E6')} + onMouseEnter={e => (e.currentTarget.style.background = 'rgba(17,29,85,0.04)')} onMouseLeave={e => (e.currentTarget.style.background = 'transparent')} > {item.num} @@ -458,7 +554,7 @@ const Home: React.FC = () => { />
+ : 'linear-gradient(to right, #fff 0%, transparent 30%), linear-gradient(to top, rgba(3,9,58,0.82) 0%, transparent 50%)' }} /> {/* Heading overlay – mobile only (bottom-left) */} {isMobile && (
@@ -480,9 +576,9 @@ const Home: React.FC = () => {
{/* CTA Section – with embedded form */} -
+
{/* Subtle radial glow behind left copy */} -
+
@@ -570,18 +666,32 @@ const Home: React.FC = () => { {showVideo && (
-
- -

{fallbackText(videoModal.title, homeContent.videoModal.title)}

-

{fallbackText(videoModal.description, homeContent.videoModal.description)}

- -
+ {videoSrc ? ( +
)} @@ -591,26 +701,28 @@ const Home: React.FC = () => { // ─── StatusSlider ───────────────────────────────────────────────────────────── -function StatusSlider({ data }: { data?: HomeCms }) { +function StatusSlider({ data }: { data?: SpaApplicationPhaseData }) { const isMobile = useIsMobile(); - const phases = fallbackArray(data?.phases, homeContent.status.phases).map((phase, i) => { - const phaseRecord = phase as StatusPhase - const fallbackPhase = homeContent.status.phases[i] - const fallbackCta = fallbackPhase?.cta?.label - ? { label: fallbackPhase.cta.label, to: fallbackPhase.cta.url } + if (!data?.phases?.length) return null; + + const phases = data.phases.map((phase): RenderedStatusPhase => { + const cta = phase.cta?.label + ? { label: phase.cta.label, to: phase.cta.to || phase.cta.url || '/' } : null - const cta = phaseRecord?.cta?.label - ? { label: phaseRecord.cta.label, to: phaseRecord.cta.to || phaseRecord.cta.url || fallbackPhase?.cta?.url || '/' } - : fallbackCta - const membershipCta = phaseRecord?.membershipCta?.label - ? { label: phaseRecord.membershipCta.label, to: phaseRecord.membershipCta.to || phaseRecord.membershipCta.url || homeContent.hero.secondaryCta.url } + const membershipCta = phase.membershipCta?.label + ? { label: phase.membershipCta.label, to: phase.membershipCta.to || phase.membershipCta.url || '/mitglied-werden' } : undefined - return { ...fallbackPhase, ...phaseRecord, cta, membershipCta } + return { + ...phase, + accent: phase.accent || '#EFBF04', + bg: phase.bg || '#020A1E', + cta, + membershipCta, + } }); - const fallbackActivePhase = Number(homeContent.status.activePhase); - const configuredActive = data?.activePhase !== undefined && data?.activePhase !== null ? Number(data.activePhase) : fallbackActivePhase; - const active = Math.max(0, Math.min(phases.length - 1, Number.isFinite(configuredActive) ? configuredActive : fallbackActivePhase)); + const configuredActive = Number(data.activePhase); + const active = Math.max(0, Math.min(phases.length - 1, Number.isFinite(configuredActive) ? configuredActive : 0)); const phase = phases[active]; return ( @@ -625,9 +737,9 @@ function StatusSlider({ data }: { data?: HomeCms }) {
); @@ -642,7 +754,7 @@ function StatusSlideCard({ successApplicationsLabel, successWinnersLabel, }: { - phase: StatusPhase & HomeCms; + phase: RenderedStatusPhase; isMobile: boolean; noActionLabel: string; successApplicationsLabel: string; @@ -722,10 +834,10 @@ function StatusSlideCard({ ) : ( /* Success stats */
-
{fallbackText(phase.successApplications, homeContent.status.phases[2]?.successApplications || '')}
+
{fallbackText(phase.successApplications, '')}
{successApplicationsLabel}
-
{fallbackText(phase.successWinners, homeContent.status.phases[2]?.successWinners || '')}
+
{fallbackText(phase.successWinners, '')}
{successWinnersLabel}
)} @@ -735,7 +847,7 @@ function StatusSlideCard({
e.stopPropagation()} style={{ fontFamily: FF, @@ -760,7 +872,7 @@ function StatusSlideCard({ (e.currentTarget as HTMLElement).style.borderColor = `${phase.accent}55`; }} > - {fallbackText(phase.membershipCta?.label, homeContent.hero.secondaryCta.label)} + {phase.membershipCta?.label}
)} diff --git a/src/spa/pages/Netzwerk.tsx b/src/spa/pages/Netzwerk.tsx index b6a55b0..3e5b893 100644 --- a/src/spa/pages/Netzwerk.tsx +++ b/src/spa/pages/Netzwerk.tsx @@ -1,11 +1,12 @@ -import React, { useState, useEffect } from 'react'; +import React, { useState, useEffect, useRef } from 'react'; import { Link } from '@/spa/router'; -import { ChevronRight, X, ArrowRight, Globe, Linkedin, Building2, MapPin, ExternalLink } from 'lucide-react'; +import { ChevronRight, X, ArrowRight, Globe, Linkedin, Building2, MapPin, ExternalLink, Play } from 'lucide-react'; import SponsoringForm from '@/spa/components/forms/SponsoringForm'; import MunichSkylineBg from '@/spa/components/ui/munich-skyline-bg'; import { useIsMobile } from '@/spa/hooks/useIsMobile'; -import { useCmsRoute } from '@/spa/cmsRoute'; +import { useCmsCollection, useCmsRoute } from '@/spa/cmsRoute'; import { mediaAlt, mediaUrl } from '@/spa/cmsMediaField'; +import { homeContent } from '@/spa/homeContent'; import { netzwerkContent } from '@/spa/netzwerkContent'; import Image from '@/spa/components/ui/UnoptimizedImage' @@ -14,6 +15,7 @@ const FB = '"Inter", sans-serif'; const NAVY = '#111D55'; const GOLD = '#EFBF04'; const CREAM = '#E4E2E3'; +const HIDE_MEMBERSHIP_NETWORK_CTA = true; const ROLE_COLOR: Record = { 'Hauptsponsor': '#EFBF04', @@ -28,6 +30,18 @@ type NetzwerkCms = Partial & { sponsoring?: Partial & { image?: unknown } } +type HomeVideoCms = { + hero?: { + videoLabel?: string | null + } + videoModal?: { + video?: unknown + title?: string | null + description?: string | null + closeLabel?: string | null + } +} + 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 } @@ -40,6 +54,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 isMembershipCta = (cta?: { label?: string | null; url?: string | null } | null) => { + const normalizedLabel = cta?.label?.trim().toLowerCase(); + + return cta?.url === '/mitglied-werden' || normalizedLabel === 'mitglied werden' || normalizedLabel === 'vereinsmitglied werden'; +} function Lines({ text, highlight }: { text: string; highlight?: string }) { return ( @@ -443,7 +462,12 @@ function PartnerModal({ partner, copy, onClose }: { partner: Partner; copy: Part const Netzwerk: React.FC = () => { const isMobile = useIsMobile(); const [selectedPartner, setSelectedPartner] = useState(null); + const [showGreetingVideo, setShowGreetingVideo] = useState(false); + 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 home = (homePage?.home || {}) as HomeVideoCms; + const homeVideoModal = home.videoModal || {}; const hero = { ...netzwerkContent.hero, ...(cms.hero || {}) }; const patronage = { ...netzwerkContent.patronage, ...(cms.patronage || {}) }; const juryIntro = { ...netzwerkContent.juryIntro, ...(cms.juryIntro || {}) }; @@ -465,6 +489,21 @@ const Netzwerk: React.FC = () => { const mobileStats = fallbackArray(juryIntro.stats, netzwerkContent.juryIntro.stats); const desktopStats = fallbackArray(juryIntro.desktopStats, netzwerkContent.juryIntro.desktopStats); const sponsorBenefits = fallbackArray(sponsoring.benefits, netzwerkContent.sponsoring.benefits); + const greetingVideoSrc = mediaUrl(homeVideoModal.video, ''); + const greetingVideoTitle = fallbackText(homeVideoModal.title, homeContent.videoModal.title); + const greetingVideoLabel = fallbackText(home.hero?.videoLabel, homeContent.hero.videoLabel); + const greetingVideoCloseLabel = fallbackText(homeVideoModal.closeLabel, homeContent.videoModal.closeLabel); + const showMembershipFootnote = + !HIDE_MEMBERSHIP_NETWORK_CTA || + !isMembershipCta({ label: sponsoring.footnoteLabel, url: sponsoring.footnoteUrl }); + + useEffect(() => { + if (!showGreetingVideo || !greetingVideoSrc) return; + + greetingVideoRef.current?.play().catch(() => { + // Browser autoplay rules can still require the native control click. + }); + }, [showGreetingVideo, greetingVideoSrc]); return (
@@ -532,6 +571,47 @@ const Netzwerk: React.FC = () => {
{fallbackText(patronage.greetingAttribution, netzwerkContent.patronage.greetingAttribution)}
+ {greetingVideoSrc && ( +
+ +
+ )}
@@ -757,37 +837,39 @@ const Netzwerk: React.FC = () => {
{/* Footnote */} -
- {fallbackText(sponsoring.footnotePrefix, netzwerkContent.sponsoring.footnotePrefix)} - { - (e.currentTarget as HTMLElement).style.color = '#EFBF04'; - (e.currentTarget as HTMLElement).style.borderBottomColor = '#EFBF04'; - }} - onMouseLeave={e => { - (e.currentTarget as HTMLElement).style.color = 'rgba(239,191,4,0.7)'; - (e.currentTarget as HTMLElement).style.borderBottomColor = 'rgba(239,191,4,0.3)'; - }} - > - {fallbackText(sponsoring.footnoteLabel, netzwerkContent.sponsoring.footnoteLabel)} - -
+ {showMembershipFootnote && ( +
+ {fallbackText(sponsoring.footnotePrefix, netzwerkContent.sponsoring.footnotePrefix)} + { + (e.currentTarget as HTMLElement).style.color = '#EFBF04'; + (e.currentTarget as HTMLElement).style.borderBottomColor = '#EFBF04'; + }} + onMouseLeave={e => { + (e.currentTarget as HTMLElement).style.color = 'rgba(239,191,4,0.7)'; + (e.currentTarget as HTMLElement).style.borderBottomColor = 'rgba(239,191,4,0.3)'; + }} + > + {fallbackText(sponsoring.footnoteLabel, netzwerkContent.sponsoring.footnoteLabel)} + +
+ )}
@@ -797,6 +879,68 @@ const Netzwerk: React.FC = () => { setSelectedPartner(null)} /> )} + {/* ── 9. GRUSSWORT VIDEO MODAL ────────────────────────────────────────── */} + {showGreetingVideo && greetingVideoSrc && ( +
{ if (e.target === e.currentTarget) setShowGreetingVideo(false); }} + style={{ + position: 'fixed', + inset: 0, + zIndex: 520, + background: 'rgba(0,0,0,0.95)', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + padding: isMobile ? 16 : 24, + }} + > + +
+
+
+ )} +
); }; diff --git a/src/spa/pages/Participation.tsx b/src/spa/pages/Participation.tsx index 5472c91..70be5f1 100644 --- a/src/spa/pages/Participation.tsx +++ b/src/spa/pages/Participation.tsx @@ -1,5 +1,5 @@ import React, { useRef } from 'react'; -import { MapPin, Users, TrendingUp, Building2, ArrowRight, CheckCircle2, UserCheck, Send, Star } from 'lucide-react'; +import { MapPin, Users, TrendingUp, Building2, ArrowRight, CheckCircle2, UserCheck, Send, Star, Mail } from 'lucide-react'; import { Link } from '@/spa/router'; import BewerbungsForm from '@/spa/components/forms/BewerbungsForm'; import WegZurAuszeichnungSection from '@/spa/components/WegZurAuszeichnungSection'; @@ -18,10 +18,13 @@ const CREAM = '#E4E2E3'; type ParticipationCms = Partial & { hero?: Partial & { backgroundImage?: unknown }; - evaluation?: Partial & { image?: unknown }; + awardsGrid?: Partial & { cards?: AwardCardCms[] }; applicationForm?: Partial & { image?: unknown }; }; +type AwardCard = (typeof participationContent.awardsGrid.cards)[number]; +type AwardCardCms = Partial & { image?: unknown }; + const ICONS = { building2: Building2, mapPin: MapPin, @@ -38,6 +41,11 @@ const fallbackText = (value: unknown, fallback: string) => const fallbackArray = (value: unknown, fallback: T[]) => Array.isArray(value) && value.length > 0 ? (value as T[]) : fallback; +const mergeAwardCards = (value: unknown, fallback: AwardCard[]): (AwardCard & { image?: unknown })[] => { + const cards = Array.isArray(value) && value.length > 0 ? (value as AwardCardCms[]) : fallback; + return cards.map((card, index) => ({ ...(fallback[index] || fallback[0]), ...card })); +}; + function Lines({ text }: { text: string }) { return <>{text.split('\n').map((line, i) => {i > 0 &&
}{line}
)}; } @@ -49,14 +57,13 @@ const Participation: React.FC = () => { const hero = { ...participationContent.hero, ...(cms.hero || {}) }; const process = { ...participationContent.process, ...(cms.process || {}) }; const eligibility = { ...participationContent.eligibility, ...(cms.eligibility || {}) }; - const evaluation = { ...participationContent.evaluation, ...(cms.evaluation || {}) }; const applicationWays = { ...participationContent.applicationWays, ...(cms.applicationWays || {}) }; const datesBanner = { ...participationContent.datesBanner, ...(cms.datesBanner || {}) }; + const awardsGrid = { ...participationContent.awardsGrid, ...(cms.awardsGrid || {}) }; const applicationForm = { ...participationContent.applicationForm, ...(cms.applicationForm || {}) }; const form = { ...participationContent.form, ...(cms.form || {}) }; const eligibilityCriteria = fallbackArray(eligibility.criteria, participationContent.eligibility.criteria); const eligibilityNotes = fallbackArray(eligibility.notes, participationContent.eligibility.notes); - const evaluationCriteria = fallbackArray(evaluation.criteria, participationContent.evaluation.criteria); const mobileDates = fallbackArray(datesBanner.mobileItems, participationContent.datesBanner.mobileItems); const desktopDates = fallbackArray(datesBanner.desktopItems, participationContent.datesBanner.desktopItems); const applicationFacts = fallbackArray(applicationForm.facts, participationContent.applicationForm.facts); @@ -174,75 +181,6 @@ const Participation: React.FC = () => {
- {/* ── CRITERIA / BEWERTUNG ─────────────────────────────────────────────── */} -
- - {/* TOP: editorial split – image left (45%) / header right (55%) */} -
- - {/* Left – full-bleed image with gradient blend into navy on the right (+ heading on mobile) */} -
- {mediaAlt(evaluation.image, - {/* Dark overlay for depth */} -
- {/* Right-side blend into navy (desktop) */} - {!isMobile &&
} - {/* Mobile heading shadow (bottom-left) */} - {isMobile &&
} - {/* Bottom blend for continuity with grid below */} -
- {/* Heading overlay – mobile only */} - {isMobile && ( -
- {fallbackText(evaluation.eyebrow, participationContent.evaluation.eyebrow)} -

- -

-
- )} -
- - {/* Right – overline + headline + intro */} - - - {/* BOTTOM: full-width 4-column criteria grid */} -
- {evaluationCriteria.map((crit, i) => ( - - ))} -
- -
-
- {/* ── BEWERBUNGSWEGE ───────────────────────────────────────────────────── */} @@ -282,6 +220,9 @@ const Participation: React.FC = () => { )} + {/* ── AWARDS GRID ─────────────────────────────────────────────────────── */} + + {/* ── FORM SECTION ─────────────────────────────────────────────────────── */}
@@ -400,27 +341,6 @@ function QualRow({ item, Icon, last }: { item: { num: string; title: string; bod ); } -// ── CriteriaCell ────────────────────────────────────────────────────────────── - -function CriteriaCell({ crit, idx }: { crit: { title: string; desc: string }; idx: number }) { - const [hovered, setHovered] = React.useState(false); - const isMobileCell = useIsMobile(); - return ( -
0 ? '1px solid rgba(255,255,255,0.07)' : 'none', borderTop: isMobileCell && idx > 0 ? '1px solid rgba(255,255,255,0.07)' : 'none', display: 'flex', flexDirection: 'column', gap: 0, cursor: 'default', transition: 'background 0.2s', background: hovered ? 'rgba(255,255,255,0.03)' : 'transparent' }} - onMouseEnter={() => setHovered(true)} - onMouseLeave={() => setHovered(false)} - > -
- 0{idx + 1} -
-
-

{crit.title}

-

{crit.desc}

-
- ); -} - // ── BewerbungswegeSection ───────────────────────────────────────────────────── type ApplicationWaysContent = Partial; @@ -551,4 +471,131 @@ function BewerbungswegeSection({ content }: { content?: ApplicationWaysContent } ); } +type AwardsGridContent = Partial; + +function AwardsGridSection({ content }: { content?: AwardsGridContent }) { + const isMobile = useIsMobile(); + const section = { ...participationContent.awardsGrid, ...(content || {}) }; + const cards = mergeAwardCards(section.cards, participationContent.awardsGrid.cards); + + return ( +
+ +
+ + {fallbackText(section.eyebrow, participationContent.awardsGrid.eyebrow)} + +
+

+ +

+

+ {fallbackText(section.description, participationContent.awardsGrid.description)} +

+
+
+ +
+ {cards.map((card, index) => { + const imageFilename = fallbackText(card.imageFilename, participationContent.awardsGrid.cards[index]?.imageFilename || participationContent.awardsGrid.cards[0].imageFilename); + const isContainedImage = imageFilename.endsWith('.png') || imageFilename.includes('roland-berger'); + const isLast = index === cards.length - 1; + + return ( + + ); + })} +
+
+ ); +} + export default Participation; diff --git a/src/spa/pages/Preistraeger.tsx b/src/spa/pages/Preistraeger.tsx index 81b9101..ebb9563 100644 --- a/src/spa/pages/Preistraeger.tsx +++ b/src/spa/pages/Preistraeger.tsx @@ -1,6 +1,6 @@ import React, { useState, useMemo } from 'react'; import { Link } from '@/spa/router'; -import { Trophy, Search, ChevronDown, ChevronRight, X, ArrowRight } from 'lucide-react'; +import { Trophy, ChevronRight, ArrowRight } from 'lucide-react'; import { WINNERS, type Winner } from '@/spa/data/winners'; import { useCmsCollection, useCmsRoute, type CmsRouteDoc } from '@/spa/cmsRoute'; import { docImageUrl, mediaAlt, mediaUrl } from '@/spa/cmsMediaField'; @@ -47,14 +47,10 @@ const normalizeWinner = ( export default function Preistraeger() { const isMobile = useIsMobile(); - const [filterCategory, setFilterCategory] = useState(''); - const [search, setSearch] = useState(''); - const [mediaOnly, setMediaOnly] = useState(false); const cms = (useCmsRoute()?.doc?.preistraegerIndex || {}) as PreistraegerIndexCms; const cmsPreistraeger = useCmsCollection('preistraeger'); const hero = { ...preistraegerIndexContent.hero, ...(cms.hero || {}) }; const breadcrumb = { ...preistraegerIndexContent.breadcrumb, ...(cms.breadcrumb || {}) }; - const filters = { ...preistraegerIndexContent.filters, ...(cms.filters || {}) }; const count = { ...preistraegerIndexContent.count, ...(cms.count || {}) }; const empty = { ...preistraegerIndexContent.empty, ...(cms.empty || {}) }; const card = useMemo(() => ({ ...preistraegerIndexContent.card, ...(cms.card || {}) }), [cms.card]); @@ -69,20 +65,10 @@ export default function Preistraeger() { return WINNERS; }, [card, cardFallbackImage, cmsPreistraeger]); const years = useMemo(() => [...new Set(winners.map((winner) => winner.year))].sort((a, b) => b - a), [winners]); - const categories = useMemo(() => [...new Set(winners.map((winner) => winner.category))].sort((a, b) => a.localeCompare(b, 'de')), [winners]); const [activeYear, setActiveYear] = useState(undefined); const selectedYear = activeYear ?? years[0] ?? new Date().getFullYear(); - const filtered = useMemo(() => winners.filter(w => { - if (w.year !== selectedYear) return false; - if (filterCategory && w.category !== filterCategory) return false; - if (search && !w.name.toLowerCase().includes(search.toLowerCase())) return false; - if (mediaOnly && !w.hasMedia) return false; - return true; - }), [selectedYear, filterCategory, search, mediaOnly, winners]); - - const reset = () => { setFilterCategory(''); setSearch(''); setMediaOnly(false); }; - const hasFilter = !!(filterCategory || search || mediaOnly); + const filtered = useMemo(() => winners.filter(w => w.year === selectedYear), [selectedYear, winners]); return (
@@ -102,16 +88,16 @@ export default function Preistraeger() { {fallbackText(breadcrumb.label, preistraegerIndexContent.breadcrumb.label)}
- {/* Filter Section */} -
+ {/* Year Filter Section */} +
{/* #93: Headline entfernt – Seitenname steht bereits oben im Breadcrumb. */} {/* Year Tabs */} -
+
{years.map(year => ( ))}
- - {/* Filter Row */} -
- ({ label: c, value: c }))} - width={isMobile ? undefined : 280} - /> - -
- - {/* Toggle row */} -
-
- - {fallbackText(filters.storyHeading, preistraegerIndexContent.filters.storyHeading)} - -
- {fallbackText(filters.mediaIcon, preistraegerIndexContent.filters.mediaIcon)} - {fallbackText(filters.mediaLabel, preistraegerIndexContent.filters.mediaLabel)} - -
-
- {hasFilter && ( - - )} -
{/* Count bar */} @@ -319,61 +257,3 @@ function WinnerCard({ winner, hoverLabel }: { winner: Winner; hoverLabel: string ); } - -// ── SelectControl ──────────────────────────────────────────────────────────── - -function SelectControl({ value, onChange, placeholder, options, width }: { - value: string; onChange: (v: string) => void; - placeholder: string; options: { label: string; value: string }[]; - width?: number; -}) { - const active = !!value; - return ( -
- - -
- ); -} - -// ── SearchControl ──────────────────────────────────────────────────────────── - -function SearchControl({ value, onChange, placeholder }: { value: string; onChange: (v: string) => void; placeholder: string }) { - return ( -
- onChange(e.target.value)} - placeholder={placeholder} - style={{ - width: '100%', height: 44, padding: '0 40px 0 14px', - fontFamily: FF, fontSize: 16, - border: `1px solid ${BORDER}`, borderRadius: 0, - background: '#fff', outline: 'none', boxSizing: 'border-box', - transition: 'border-color 0.15s', color: '#101828', - }} - onFocus={e => (e.currentTarget.style.borderColor = GOLD)} - onBlur={e => (e.currentTarget.style.borderColor = BORDER)} - /> - -
- ); -} diff --git a/src/spa/pages/Press.tsx b/src/spa/pages/Press.tsx index 85506be..d029d3d 100644 --- a/src/spa/pages/Press.tsx +++ b/src/spa/pages/Press.tsx @@ -524,6 +524,7 @@ const Press: React.FC = () => { {/* Left col */}