migrate/1722052698_create_test_table.up.sql
2024-07-27 15:37:23 +08:00

5 lines
225 B
SQL

create table if not EXISTS ufutx_test (
id int(10) unsigned not null auto_increment,
name varchar(100) not null comment "姓名",
primary key(id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;