Merge branch 'main' of https://gitea.ufutx.net/ufutx/migrate
This commit is contained in:
commit
b913615f30
5
1722234431_create_test_table.down.sql
Normal file
5
1722234431_create_test_table.down.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;
|
1
1722234431_create_test_table.up.sql
Normal file
1
1722234431_create_test_table.up.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
drop table if EXISTS ufutx_test;
|
2
1722395603_table_lotto_code_add_deleted_at.up.sql
Normal file
2
1722395603_table_lotto_code_add_deleted_at.up.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
alter table `ufutx_lotto_codes`
|
||||||
|
ADD COLUMN `deleted_at` timestamp NULL
|
Loading…
Reference in New Issue
Block a user