This commit is contained in:
parent
ceee1ec79b
commit
aad8fb0a66
|
@ -1,4 +1,5 @@
|
||||||
-- vn.companyI18n definition
|
-- vn.companyI18n definition
|
||||||
|
USE vn;
|
||||||
|
|
||||||
CREATE TABLE `companyI18n` (
|
CREATE TABLE `companyI18n` (
|
||||||
`companyFk` smallint(5) unsigned NOT NULL,
|
`companyFk` smallint(5) unsigned NOT NULL,
|
||||||
|
@ -6,4 +7,5 @@ CREATE TABLE `companyI18n` (
|
||||||
`footnotes` longtext COLLATE utf8mb3_unicode_ci DEFAULT NULL,
|
`footnotes` longtext COLLATE utf8mb3_unicode_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`companyFk`,`lang`),
|
PRIMARY KEY (`companyFk`,`lang`),
|
||||||
CONSTRAINT `companyI18n_FK` FOREIGN KEY (`companyFk`) REFERENCES `company` (`id`) ON UPDATE CASCADE
|
CONSTRAINT `companyI18n_FK` FOREIGN KEY (`companyFk`) REFERENCES `company` (`id`) ON UPDATE CASCADE
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<p
|
<p
|
||||||
v-if="company.footnotes"
|
v-if="company.footnotes"
|
||||||
class="privacy"
|
class="privacy"
|
||||||
v-html="$18n.locale(`${company.footnotes}`)">
|
v-html="$i18n.locale(`${company.footnotes}`)">
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue