-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Can add a translation group id to a talk
When a talk belongs to a translation group then it's fairly easy to find the same talk that has been done in a different language. One talk with two different locales, two different rows, can belong to one group. This is a principle similar to what's used for blog posts. Database tables DDL queries to add the column: ``` ALTER TABLE `talks` ADD `key_translation_group` int unsigned NULL COMMENT 'No foreign key, yet' AFTER `key_locale`; ALTER TABLE `talks` ADD UNIQUE `key_locale_key_translation_group` (`key_locale`, `key_translation_group`); ```
- Loading branch information
Showing
5 changed files
with
26 additions
and
0 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