Laravel 5 时间戳更改字段上的迁移错误

Laravel 5 时间戳更改字段上的迁移错误,laravel-5,migration,Laravel 5,Migration,在laravel 5.7/mysql 5应用程序中,我想将默认值设置为timestamp字段(创建时未设置): 但我有一个错误: Unknown column type "timestamp" requested. Any Doctrine type that you use has to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the known types with

在laravel 5.7/mysql 5应用程序中,我想将默认值设置为timestamp字段(创建时未设置):

但我有一个错误:

 Unknown column type "timestamp" requested. Any Doctrine type that you use has to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the known types with \Doctrine\DBAL\Types\Type::getTypesMap(). If this error occurs during database introspection then you might have forgotten to register all database types for a Doctrine Type. Use AbstractPlatform#registerDoctrineTypeMapping() or have your custom types implement Type#getMappedDatabaseTypes(). If the type name is empty you might have a problem with the cache or forgot some mapping information.

  at /mnt/_work_sdb8/wwwroot/lar/BoxBooking2/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:267
    263|      * @return \Doctrine\DBAL\DBALException
    264|      */
    265|     public static function unknownColumnType($name)
    266|     {                                                                                                                                                                                                         
  > 267|         return new self('Unknown column type "' . $name . '" requested. Any Doctrine type that you use has ' .                                                                                                
    268|             'to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the ' .                                                                                                    
    269|             'known types with \Doctrine\DBAL\Types\Type::getTypesMap(). If this error occurs during database ' .                                                                                              
    270|             'introspection then you might have forgotten to register all database types for a Doctrine Type. Use ' .                                                                                          
    271|             'AbstractPlatform#registerDoctrineTypeMapping() or have your custom types implement ' .                                                                                                           
通常情况下,我对时间戳字段没有任何问题,我认为method->change引起了这个问题。 如何修复它

修改块#1: 我已经把它填好了 my composer.json:

{
    "name": "laravel/laravel",
    "type": "project",
    "description": "The Laravel Framework.",
    "keywords": [
        "framework",
        "laravel"
    ],
    "license": "MIT",
    "require": {
        "php": "^7.1.3",
        "doctrine/dbal": "^2.9",
        "fideloper/proxy": "^4.0",
        "laravel/framework": "5.7.*",
        "laravel/tinker": "^1.0",
        "marktopper/doctrine-dbal-timestamp-type": "^1.0",
        "mews/purifier": "^2.1",
        "proengsoft/laravel-jsvalidation": ">2.2.0",
        "yajra/laravel-datatables-oracle": "~8.0"
    },
    "require-dev": {
        "beyondcode/laravel-dump-server": "^1.0",
        "filp/whoops": "^2.0",
        "fzaninotto/faker": "^1.4",
        "mockery/mockery": "^1.0",
        "nunomaduro/collision": "^2.0",
        "phpunit/phpunit": "^7.0"
    },
    "config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "dont-discover": []
        }
    },
    "autoload": {
        "psr-4": {
            "App\\": "app/"
        },
        "classmap": [
            "database/seeds",
            "database/factories"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts": {
        "post-autoload-dump": [
            "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
            "@php artisan package:discover --ansi"
        ],
        "post-root-package-install": [
            "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "@php artisan key:generate --ansi"
        ]
    }
}
通过谷歌搜索,我发现我还需要安装marktopper/dbal时间戳类型 我安装了它,运行迁移时并没有错误,但并没有定义默认时间戳处的created_,所以添加的新行在created_中为null

$ php artisan --version
Laravel Framework 5.7.21
$ node -v 
v10.15.0
$ npm -v 
6.5.0
谢谢

无法更改/修改时区列类型的状态

只能“更改”以下列类型:bigInteger、binary、boolean、date、dateTime、dateTimeTz、decimal、integer、json、longText、mediumText、smallInteger、string、text、time、unsignedBigInteger、unsignedInteger和unsignedSmallInteger

最好使用原始sql查询更新列,如下所示:

DB::statement('ALTER TABLE `table_name` CHANGE `column_name` `column_name` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;');

您是否添加了依赖性原则?在使用change()时需要安装此选项;作曲家要求条令/D请查看修改的块#1
DB::statement('ALTER TABLE `table_name` CHANGE `column_name` `column_name` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;');