Last active
June 1, 2020 18:03
-
-
Save kauemurakami/7681005abb1ea5d269cfff574cc90648 to your computer and use it in GitHub Desktop.
arquivo db
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Database } from 'https://deno.land/x/denodb/mod.ts'; | |
import Client from "../models/client.ts"; | |
const db = new Database( | |
"mysql",{ | |
database: "NOME-DA-BASE-DE-DADOS", | |
host: "localhost", | |
username: "root", | |
password: "senha", | |
} | |
) | |
//array de modelos | |
db.link([Client]) | |
//drop/create no inicio da aplicação | |
//await db.sync({drop: true}) | |
export default db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment