Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1138 - Invalid use of NULL value #27

Open
kentasaito opened this issue Mar 5, 2018 · 0 comments
Open

#1138 - Invalid use of NULL value #27

kentasaito opened this issue Mar 5, 2018 · 0 comments

Comments

@kentasaito
Copy link

Hi.

I'm using PHP MySQL Diff 1.2.1 (installed from composer).
I give the command these two schemas.

from.schema

CREATE TABLE post (
post_date date NOT NULL COMMENT 'Created At'
);

to.schema

CREATE TABLE post (
post_date date NOT NULL COMMENT 'Created'
);

It returns:

ALTER TABLE post
CHANGE COLUMN post_date post_date date NOT NULL COMMENT 'Created' FIRST;

but MySQL(Server version: 5.7.17) says:

#1138 - Invalid use of NULL value

Without 'FIRST', it worked.

ALTER TABLE post
CHANGE COLUMN post_date post_date date NOT NULL COMMENT 'Created';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant