Git Product home page Git Product logo

prisma-knex's Introduction

Prisma-Knex

Using Prisma with Knex.js, A SQL Query Builder for Javascript for migrations.

Due to limitations with prisma introspect, we can only use PostgreSQL databases.

Prerequisites

  • Knex.js (npm install knex / yarn add knex)
  • Database
  • docker-compose

Configuration

TODO: Add configrations for the databases, make sure that migrations is set to false in PRISMA_CONFIG

Creating migrations

First we will create a migration file with knex migrate:make

knex migrate:make --knexfile ./server/db create_user_table

This creates a migration to server/db/migrations, timestamped with the current date.

Next lets create some initial migration. You can use the knex query builder, but we'll use raw SQL for simplicity.

const up = knex =>
  knex.raw(`
    CREATE TABLE users (
      id serial primary key,
      username text unique,
      email text unique,
      first_name text,
      last_name text,
      created_at timestamp not null default now(),
      updated_at timestamp not null default now()
    )
  `);

const down = knex =>
  knex.raw(`
  DROP TABLE users;
`);

module.exports = {
  up,
  down,
};

Excellent! Now we can migrate to the latest migration we have, which is that one!

knex migrate:latest --knexfile=./server/db/knexfile.js

Introspection

Next we use prisma introspect to generate the datamodel based on the actual structure of the existing data on the PostgreSQL database.

WIP WIP

prisma-knex's People

Contributors

valstu avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.