diff --git a/1722836803_table_test.up.sql b/1722836803_table_test.up.sql new file mode 100644 index 0000000..6aaea39 --- /dev/null +++ b/1722836803_table_test.up.sql @@ -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; \ No newline at end of file