-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2534 from umami-software/dev
v2.10.0
- Loading branch information
Showing
539 changed files
with
16,106 additions
and
7,085 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the `team_website` table. If the table is not empty, all the data it contains will be lost. | ||
*/ | ||
-- AlterTable | ||
ALTER TABLE `team` ADD COLUMN `deleted_at` TIMESTAMP(0) NULL, | ||
ADD COLUMN `logo_url` VARCHAR(2183) NULL; | ||
|
||
-- AlterTable | ||
ALTER TABLE `user` ADD COLUMN `display_name` VARCHAR(255) NULL, | ||
ADD COLUMN `logo_url` VARCHAR(2183) NULL; | ||
|
||
-- AlterTable | ||
ALTER TABLE `website` ADD COLUMN `created_by` VARCHAR(36) NULL, | ||
ADD COLUMN `team_id` VARCHAR(36) NULL; | ||
|
||
-- MigrateData | ||
UPDATE `website` SET created_by = user_id WHERE team_id IS NULL; | ||
|
||
-- DropTable | ||
DROP TABLE `team_website`; | ||
|
||
-- CreateIndex | ||
CREATE INDEX `website_team_id_idx` ON `website`(`team_id`); | ||
|
||
-- CreateIndex | ||
CREATE INDEX `website_created_by_idx` ON `website`(`created_by`); |
Oops, something went wrong.