Skip to main content
Module

x/denodb/mod.ts>Model#save

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Latest
method Model.prototype.save
import { Model } from "https://deno.land/x/denodb@v1.4.0/mod.ts";

Create a new record for the model.

const flight = new Flight();
flight.departure = "Toronto";
flight.destination = "Paris";
await flight.save();