migrate/1722843513_create_table_test.up.sql

5 lines
229 B
MySQL
Raw Permalink Normal View History

2024-08-05 15:40:01 +08:00
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;