diff --git a/box.json b/box.json index 885556c..ff2d61a 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"ContentBox CLI", - "version":"1.3.1", + "version":"1.3.2", "location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/contentbox-cli/@build.version@/contentbox-cli-@build.version@.zip", "slug":"contentbox-cli", "author":"Ortus Solutions, Corp", diff --git a/changelog.md b/changelog.md index 70948d8..4fc461b 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +---- + +## [v1.3.2] => 2022-MAR-31 + +### Fixed + +* Don't run migrations on new installs ---- diff --git a/commands/contentbox/install.cfc b/commands/contentbox/install.cfc index 0dcb910..5729782 100644 --- a/commands/contentbox/install.cfc +++ b/commands/contentbox/install.cfc @@ -183,13 +183,6 @@ component { sleep( 1000 ); command( "migrate install" ).run(); - variables.print - .line() - .blueLine( "Please wait while we run the initial migrations..." ) - .toConsole(); - sleep( 1000 ); - command( "migrate up migrationsDirectory=modules/contentbox/migrations" ).run(); - // Confirm starting up the server if ( arguments.deployServer ) { variables.print