ci4

Форк
0
/
Migrations.php 
50 строк · 1.6 Кб
1
<?php
2

3
namespace Config;
4

5
use CodeIgniter\Config\BaseConfig;
6

7
class Migrations extends BaseConfig
8
{
9
    /**
10
     * --------------------------------------------------------------------------
11
     * Enable/Disable Migrations
12
     * --------------------------------------------------------------------------
13
     *
14
     * Migrations are enabled by default.
15
     *
16
     * You should enable migrations whenever you intend to do a schema migration
17
     * and disable it back when you're done.
18
     */
19
    public bool $enabled = true;
20

21
    /**
22
     * --------------------------------------------------------------------------
23
     * Migrations Table
24
     * --------------------------------------------------------------------------
25
     *
26
     * This is the name of the table that will store the current migrations state.
27
     * When migrations runs it will store in a database table which migration
28
     * files have already been run.
29
     */
30
    public string $table = 'migrations';
31

32
    /**
33
     * --------------------------------------------------------------------------
34
     * Timestamp Format
35
     * --------------------------------------------------------------------------
36
     *
37
     * This is the format that will be used when creating new migrations
38
     * using the CLI command:
39
     *   > php spark make:migration
40
     *
41
     * NOTE: if you set an unsupported format, migration runner will not find
42
     *       your migration files.
43
     *
44
     * Supported formats:
45
     * - YmdHis_
46
     * - Y-m-d-His_
47
     * - Y_m_d_His_
48
     */
49
    public string $timestampFormat = 'Y-m-d-His_';
50
}
51

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.