schema-h2.sql 509 Bytes
Newer Older
xd's avatar
xd committed
1 2 3 4 5 6 7 8 9 10 11 12 13
-- noinspection SqlNoDataSourceInspectionForFile

DROP TABLE IF EXISTS demo;

CREATE TABLE demo
(
    `id`          BIGINT(20)  NOT NULL AUTO_INCREMENT COMMENT '主键ID',
    `name`        VARCHAR(30) NOT NULL DEFAULT '' COMMENT '名称',
    `age`         int(11)     NOT NULL DEFAULT 0 COMMENT '年龄',
    `create_time` datetime    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
    `update_time` datetime    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
    PRIMARY KEY (id)
);