kawadhiya21 / mysql-migrations

A tool to use with mysql package to maintain migrations
MIT License
31 stars 25 forks source link

Allow custom migration template #25

Open lewismoten opened 3 months ago

lewismoten commented 3 months ago

I would like an option to provide a custom template for migrations & seeds so that the resulting output would look like the following:

const sql = require('../sql');

module.exports = {
    "up": sql``,
    "down": sql``
}

I use a VS Code plugin ( vscode-sql-template-literal ) that allows syntax highlighting of SQL within strings.

https://github.com/kawadhiya21/mysql-migrations/blob/65c52086c766d5c91508ba66c3b811682484c4b2/core_functions.js#L15