Skip to content

masonwb/sequelize-cli-typescript

 
 

Repository files navigation

Fork

This repository was forked to allow executing typescript migrations and seeders during runtime without the need for compilation.

sequelize/cli npm version Build Status Greenkeeper badge

The Sequelize Command Line Interface (CLI) for TypeScript

Table of Contents

Installation

Globally

Install CLI globally with

$ npm install -g sequelize-cli-typescript

Now you can run CLI using following command anywhere

$ sequelize

Locally

Install CLI locally to your node_modules folder with

$ npm install --save sequelize-cli-typescript

You should be able to run CLI with

$ npx sequelize

Differences from Sequelize-Cli (non-TypeScript)

With sequelize-cli, the model:generate command would produce JavaScript files in two folders: /models and /migrations, or other folders as specified in your .sequelizerc file. The db:migrate command would then execute these JavaScript files to update your database.

With sequelize-cli-typescript, model:generate produces TypeScript files in the same two folders (or again, as specified in your .sequelizerc file). The db:migrate command would then execute these TypeScript files to update your database.

Usage

Sequelize CLI [Node: 6.11.2, CLI: 3.0.0, ORM: 4.8.0]

Commands:
  db:migrate                        Run pending migrations                      [aliases: db:migrate:up]
  db:migrate:schema:timestamps:add  Update migration table to have timestamps
  db:migrate:status                 List the status of all migrations
  db:migrate:undo                   Reverts a migration                         [aliases: db:migrate:down]
  db:migrate:undo:all               Revert all migrations ran
  db:seed                           Run specified seeder
  db:seed:undo                      Deletes data from the database
  db:seed:all                       Run every seeder
  db:seed:undo:all                  Deletes data from the database
  db:create                         Create database specified by configuration
  db:drop                           Drop database specified by configuration
  init                              Initializes project
  init:config                       Initializes configuration
  init:migrations                   Initializes migrations
  init:models                       Initializes models
  init:seeders                      Initializes seeders
  migration:generate                Generates a new migration file              [aliases: migration:create]
  model:generate                    Generates a model and its migration         [aliases: model:create]
  seed:generate                     Generates a new seed file                   [aliases: seed:create]

Options:
  --version  Show version number                                                [boolean]
  --help     Show help                                                          [boolean]

Contributing

Sequelize CLI is always looking for contributions. You can help us with fixing bugs, reporting bugs or improving documentation.

Please read contributing documentation

Documentation

About

The Sequelize CLI

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 97.7%
  • TypeScript 2.3%