This commit is contained in:
tg130 2024-08-01 11:20:16 +08:00
commit b913615f30
3 changed files with 8 additions and 0 deletions

View 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;

View File

@ -0,0 +1 @@
drop table if EXISTS ufutx_test;

View File

@ -0,0 +1,2 @@
alter table `ufutx_lotto_codes`
ADD COLUMN `deleted_at` timestamp NULL