You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
3.9 KiB
SQL
43 lines
3.9 KiB
SQL
create table migrations
|
|
(
|
|
id int unsigned auto_increment
|
|
primary key,
|
|
migration varchar(255) not null,
|
|
batch int not null
|
|
)
|
|
collate = utf8mb4_unicode_ci;
|
|
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (1, '2019_12_14_000001_create_personal_access_tokens_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (2, '2022_07_11_104036_create_admins_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (3, '2022_07_11_104729_create_admin_accounts_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (4, '2022_07_11_104741_create_admin_auths_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (5, '2022_07_11_104747_create_auths_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (6, '2022_07_11_104758_create_admin_tokens_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (7, '2022_07_11_105144_push_admin_data', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (8, '2022_07_11_105144_push_auth_data', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (9, '2022_07_15_143135_create_configs_table', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (10, '2022_07_15_143353_push_config_data', 1);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (11, '2023_04_07_141201_create_appointment_templates_table', 2);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (13, '2023_04_07_141238_create_appointments_table', 2);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (14, '2023_04_07_143013_create_hospitals_table', 2);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (15, '2023_04_07_141218_create_appointment_holidays_table', 3);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (18, '2023_04_11_101420_create_carousels_table', 4);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (19, '2023_04_11_145255_create_hospital_additionals_table', 5);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (20, '2022_11_16_132802_create_users_table', 6);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (21, '2022_11_16_132829_create_user_accounts_table', 6);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (22, '2022_11_16_132843_create_user_tokens_table', 6);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (25, '2023_04_12_200330_create_user_people_table', 7);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (26, '2023_05_24_094023_create_hospital_pays_table', 8);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (27, '2023_05_24_124518_create_hospital_extras_table', 9);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (28, '2023_05_24_190728_create_hospital_activity_packages_table', 10);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (29, '2023_05_27_150538_create_we_chat_pays_table', 11);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (30, '2023_05_27_171617_create_user_orders_table', 11);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (32, '2023_05_30_165024_create_we_chat_refunds_table', 12);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (34, '2023_03_20_143141_create_analysis_types_table', 13);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (36, '2023_06_05_192655_create_posts_table', 14);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (37, '2023_06_05_223025_create_hospital_posts_table', 15);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (38, '2023_06_06_124320_create_hospital_questions_table', 16);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (39, '2023_06_08_224407_create_hospital_question_logs_table', 17);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (41, '2023_06_09_152434_add_hospital_to_admins_table', 18);
|
|
INSERT INTO lkpe.migrations (id, migration, batch) VALUES (43, '2023_06_10_015333_add_hospital_to_appointment_templates_table', 19);
|