Skip to content

Instantly share code, notes, and snippets.

View vitaliykreminskiy's full-sized avatar
😶‍🌫️
froggin'

Vitaliy Kreminskiy vitaliykreminskiy

😶‍🌫️
froggin'
  • Ternopil, Ukraine
  • 21:58 (UTC +03:00)
View GitHub Profile
@vitaliykreminskiy
vitaliykreminskiy / Knex-Migrations-Seeding.md
Created February 7, 2021 11:11 — forked from NigelEarle/Knex-Migrations-Seeding.md
Migration and seeding instructions using Knex.js!

Migrations & Seeding

What are migrations??

Migrations are a way to make database changes or updates, like creating or dropping tables, as well as updating a table with new columns with constraints via generated scripts. We can build these scripts via the command line using knex command line tool.

To learn more about migrations, check out this article on the different types of database migrations!

Creating/Dropping Tables