Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denodb/lib/model.ts>Model.create

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Go to Latest
method Model.create
import { Model } from "https://deno.land/x/denodb@v1.1.0/lib/model.ts";

Create one or multiple records in the current model.

await Flight.create({ departure: "Paris", destination: "Tokyo" });

await Flight.create([{ ... }, { ... }]);

Returns

Promise<Model>

Returns

Promise<Model[]>