From b32b74dc908be6060d5961b3ee44ff3cabb4821e Mon Sep 17 00:00:00 2001 From: Thomas Bonnet Date: Tue, 25 Jun 2024 15:48:24 +0200 Subject: [PATCH] i18n(fr): Update guides/astro-db from #8478 Signed-off-by: Thomas Bonnet --- src/content/docs/fr/guides/astro-db.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/docs/fr/guides/astro-db.mdx b/src/content/docs/fr/guides/astro-db.mdx index 53df03478d820..95cc2dca0de96 100644 --- a/src/content/docs/fr/guides/astro-db.mdx +++ b/src/content/docs/fr/guides/astro-db.mdx @@ -124,7 +124,7 @@ const Author = defineTable({ const Comment = defineTable({ columns: { authorId: column.number({ references: () => Author.columns.id }), - content: column.text(), + body: column.text(), } }); ``` @@ -141,10 +141,10 @@ L'exemple suivant définit deux lignes de données de développement pour une ta import { db, Comment } from 'astro:db'; export default async function() { - await db.insert(Comment).values([ - { authorId: 1, body: "J'espère que vous aimerez Astro DB !" }, - { authorId: 2, body: 'Profitez !'}, - ]) + await db.insert(Author).values([ + { id: 1, name: "Kasim" }, + { id: 2, name: "Mina" }, + ]); } ```