Skip to content
Snippets Groups Projects
Nathanael Santoso's avatar
Nathanael Santoso authored
fix course

See merge request !5
eb155bc6

OpenCourseWare Database Migration

This repository contains any script to migrate the database.

Requirement

To run this migration, you should install this dependency:

  1. Latest go
  2. sql-migrate command (https://github.com/rubenv/sql-migrate)

How to migrate to my local database

To migrate to development database, you can use this command:

sql-migrate up

How to create new migration

To create new migration, you can use this command:

sql-migrate new <migration-name>

# Example
sql-migrate new user

This command will create new .sql file at migrations/development folder.