From f0afcd66503906674a2e7cef49ff7ade2d2dce01 Mon Sep 17 00:00:00 2001 From: objecttothis Date: Fri, 18 Nov 2022 10:38:11 +0400 Subject: [PATCH] Migrations - Delete old CI3 file - Correct format of Migrations file datetime --- app/Config/Migrations.php | 2 +- app/Config/migration.php | 82 --------------------------------------- 2 files changed, 1 insertion(+), 83 deletions(-) delete mode 100644 app/Config/migration.php diff --git a/app/Config/Migrations.php b/app/Config/Migrations.php index 1fa3100af..f02a53995 100644 --- a/app/Config/Migrations.php +++ b/app/Config/Migrations.php @@ -51,5 +51,5 @@ class Migrations extends BaseConfig * * @var string */ - public $timestampFormat = 'Y-m-d-His_'; + public $timestampFormat = 'YmdHis_'; } diff --git a/app/Config/migration.php b/app/Config/migration.php deleted file mode 100644 index 7047dc9c6..000000000 --- a/app/Config/migration.php +++ /dev/null @@ -1,82 +0,0 @@ -migration->current() this is the version that schema will -| be upgraded / downgraded to. -| -*/ -$config['migration_version'] = 20180225100000; - -/* -|-------------------------------------------------------------------------- -| Migrations Path -|-------------------------------------------------------------------------- -| -| Path to your migrations folder. -| Typically, it will be within your application path. -| Also, writing permission is required within the migrations path. -| -*/ -$config['migration_path'] = APPPATH.'migrations/';