Skip to content

Incorrect integer value: '' for column 'id' #461

Description

@AntonShevchuk

Ошибка связана с MySQL 8 версии, при создании сущности не канает отправка пустого значения primary key, надо поле удалять. Простой workaround для crud/post выглядит следующим образом:

        // Workaround for next error
        // SQLSTATE[HY000]: General error: 1366 Incorrect integer value: '' for column 'id'
        if (empty($data['id'])) {
            unset($data['id']);
        }

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions