-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AB#45976] feat: publish image alt text (#379)
* feat: publish image alt text * test: updated unit tests
- Loading branch information
Showing
43 changed files
with
2,469 additions
and
17 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
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
47 changes: 47 additions & 0 deletions
47
services/catalog/service/migrations/committed/000017-image-alt-text-added.sql
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,47 @@ | ||
--! Previous: sha1:fc9415fd1858d514f88cce07b2bd0be73c05d3e8 | ||
--! Hash: sha1:677b5e78a2bfb199af4c633568e2c80a8aebc78b | ||
--! Message: image-alt-text-added | ||
|
||
-- Media Service | ||
ALTER TABLE app_public.movie_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.movie_images | ||
ADD COLUMN alt_text TEXT; | ||
|
||
ALTER TABLE app_public.tvshow_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.tvshow_images | ||
ADD COLUMN alt_text TEXT; | ||
|
||
ALTER TABLE app_public.season_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.season_images | ||
ADD COLUMN alt_text TEXT; | ||
|
||
ALTER TABLE app_public.episode_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.episode_images | ||
ADD COLUMN alt_text TEXT; | ||
|
||
ALTER TABLE app_public.collection_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.collection_images | ||
ADD COLUMN alt_text TEXT; | ||
|
||
-- Channel Service | ||
ALTER TABLE app_public.channel_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.channel_images | ||
ADD COLUMN alt_text TEXT; | ||
|
||
ALTER TABLE app_public.program_images | ||
DROP COLUMN IF EXISTS alt_text CASCADE; | ||
|
||
ALTER TABLE app_public.program_images | ||
ADD COLUMN alt_text TEXT; |
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
Oops, something went wrong.