Skip to content

Commit 633121d

Browse files
committed
Migrations should be enabled by default to remove a frustration of getting started.
1 parent d43001e commit 633121d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/Config/Migrations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Migrations extends BaseConfig
1414
| and disable it back when you're done.
1515
|
1616
*/
17-
public $enabled = false;
17+
public $enabled = true;
1818

1919
/*
2020
|--------------------------------------------------------------------------

user_guide_src/source/dbmgmt/migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ The following is a table of all the config options for migrations, available in
291291
========================== ====================== ========================== =============================================================
292292
Preference Default Options Description
293293
========================== ====================== ========================== =============================================================
294-
**enabled** FALSE TRUE / FALSE Enable or disable migrations.
294+
**enabled** TRUE TRUE / FALSE Enable or disable migrations.
295295
**path** 'Database/Migrations/' None The path to your migrations folder.
296296
**currentVersion** 0 None The current version your database should use.
297297
**table** migrations None The table name for storing the schema version number.

0 commit comments

Comments
 (0)