Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 371 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 371 Bytes

Overview

migrator - database migration tool written in zig

Features

Currently supported database drivers:

  • sqlite3
  • postgres

Build

zig build

Usage

Create migration file

migrator create

Write some SQL into created file

CREATE TABLE users(name text not null);

Then migrate

migrator migrate sqlite://hello.db