Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-fluentmigrator

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-fluentmigrator

Fluent Migrator wrapper

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Overview

Here is simple Migrate.exe wrapper. Provide path to executable(relative to project directory) and command-line parameters which will be passed directly to executable(you can list all parameters by typing Migrate.exe -h)

grunt.initConfig({
    fluentmigrator: {
        options: {
            exePath: 'tools/migrator/Migrate.exe'
        },
        file: {
            assembly : 'src/SomeProject.Migrations/bin/Debug/SomeProject.Migrations.dll',
            output: true,
            outputFileName: 'migrated.sql',
            conn: "Server=.;initial catalog=SiteDb;Integrated Security=true;"
        }
    }
})

Defaults

This default options will be merged with task-defined

{
    exePath: 'Migrate.exe',
    provider: 'sqlserver2012',
    task: 'migrate'
}

Accepted command line arguments

'assebly', 'provider', 'conn', 'task', 'verbose', 'output', 'outfile', 'namespace', 'steps', 'preview', 'version', 'profile', 'timeout', 'workingdirectory', 'tag', 'context', 'tps'

Change log

0.1.3 (December 14, 2014)

  • multitasking
  • more concise task syntax

0.1.2 (June 9, 2014)

  • Support all command-line parameters
  • fixed bug with output file name and directory

0.1.1 (May 29, 2014)

  • Initial version

Keywords

FAQs

Package last updated on 14 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc