Skip to content

Commit

Permalink
Migrations should be enabled by default to remove a frustration of ge…
Browse files Browse the repository at this point in the history
…tting started.
  • Loading branch information
lonnieezell committed Apr 25, 2019
1 parent d43001e commit 633121d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Config/Migrations.php
Expand Up @@ -14,7 +14,7 @@ class Migrations extends BaseConfig
| and disable it back when you're done.
|
*/
public $enabled = false;
public $enabled = true;

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/dbmgmt/migration.rst
Expand Up @@ -291,7 +291,7 @@ The following is a table of all the config options for migrations, available in
========================== ====================== ========================== =============================================================
Preference Default Options Description
========================== ====================== ========================== =============================================================
**enabled** FALSE TRUE / FALSE Enable or disable migrations.
**enabled** TRUE TRUE / FALSE Enable or disable migrations.
**path** 'Database/Migrations/' None The path to your migrations folder.
**currentVersion** 0 None The current version your database should use.
**table** migrations None The table name for storing the schema version number.
Expand Down

0 comments on commit 633121d

Please sign in to comment.