create test table
This commit is contained in:
parent
e78ab75253
commit
77be94f8f4
5
1722843513_create_table_test.up.sql
Normal file
5
1722843513_create_table_test.up.sql
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
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;
|
Loading…
Reference in New Issue
Block a user