Skip to content

Commit

Permalink
feat: Fix invalid view name
Browse files Browse the repository at this point in the history
  • Loading branch information
KminekMatej committed Sep 16, 2024
1 parent 5e1c271 commit de6bc53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/module/admin/migrations/2024-09-15T17-16-04.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ALTER TABLE `user` ADD `email` VARCHAR(1023) NULL DEFAULT NULL AFTER `password`;
UPDATE `user` SET `email` = (SELECT `email` FROM `usr_mails` WHERE `user_id` = `user`.`id` LIMIT 1);
DROP TABLE `usr_mails`;
DROP VIEW IF EXISTS `v_users`;
DROP VIEW IF EXISTS `v_user`;


-- DOWN:
Expand Down

0 comments on commit de6bc53

Please sign in to comment.