Merge branch 'dev' into 8357-workerManaExcludedTriggers
gitea/salix/pipeline/pr-dev This commit looks good
Details
gitea/salix/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
commit
c83e6a8bbd
|
@ -0,0 +1,8 @@
|
||||||
|
CREATE TABLE IF NOT EXISTS vn.productionCountry(
|
||||||
|
countryFk MEDIUMINT(8) UNSIGNED NOT NULL,
|
||||||
|
volumeGrowthEstimatePercent DECIMAL(6, 2) COMMENT 'Porcentaje estimado de crecimiento del volumen',
|
||||||
|
PRIMARY KEY (countryFk),
|
||||||
|
CONSTRAINT productionCountryVolume_countryFK
|
||||||
|
FOREIGN KEY (countryFk) REFERENCES vn.country (id)
|
||||||
|
ON DELETE RESTRICT ON UPDATE CASCADE
|
||||||
|
) COMMENT = 'Datos de producción por país'
|
Loading…
Reference in New Issue