forked from DebaucheryLibrarian/traxxx
Fixed showcased not inserted in networks seed file.
This commit is contained in:
parent
22512833da
commit
236d4a9427
|
@ -687,6 +687,7 @@ exports.seed = (knex) => Promise.resolve()
|
||||||
url: network.url,
|
url: network.url,
|
||||||
description: network.description,
|
description: network.description,
|
||||||
has_logo: network.hasLogo,
|
has_logo: network.hasLogo,
|
||||||
|
showcased: network.showcased,
|
||||||
parameters: network.parameters,
|
parameters: network.parameters,
|
||||||
parent_id: grandParentNetworksBySlug[network.parent] || null,
|
parent_id: grandParentNetworksBySlug[network.parent] || null,
|
||||||
}));
|
}));
|
||||||
|
@ -702,6 +703,7 @@ exports.seed = (knex) => Promise.resolve()
|
||||||
url: network.url,
|
url: network.url,
|
||||||
description: network.description,
|
description: network.description,
|
||||||
has_logo: network.hasLogo,
|
has_logo: network.hasLogo,
|
||||||
|
showcased: network.showcased,
|
||||||
parameters: network.parameters,
|
parameters: network.parameters,
|
||||||
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,
|
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,
|
||||||
}));
|
}));
|
||||||
|
|
Loading…
Reference in New Issue