drawdb-io / drawdb

Free, simple, and intuitive online database design tool and SQL generator.
https://drawdb.vercel.app
MIT License
12.09k stars 855 forks source link

fix issues.js checkDefault and Table default bug #89

Closed rainbow401 closed 1 month ago

rainbow401 commented 1 month ago
Settings Pasted Graphic
create table blog.article
(
    id          bigint auto_increment comment 'id'
        primary key,
    title       varchar(100)                        not null comment '标题',
    content     text                                null comment '内容',
    create_by   bigint                              not null,
    create_time timestamp default CURRENT_TIMESTAMP not null,
    update_by   bigint                              not null,
    update_time timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP,
    deleted     tinyint   default 0                 not null
);
vercel[bot] commented 1 month ago

@rainbow401 is attempting to deploy a commit to the dottle's projects Team on Vercel.

A member of the Team first needs to authorize it.