Skip to content
Snippets Groups Projects
Verified Commit c30fac49 authored by Martin Weise's avatar Martin Weise
Browse files

Updated description

parent d533d172
No related branches found
No related tags found
2 merge requests!277Dev,!275Dev
---
author: Martin Weise
---
## tl;dr
[:fontawesome-solid-database:  Dataset](https://dbrepo1.ec.tuwien.ac.at/pid/51){ .md-button .md-button--primary target="_blank" }
[:material-file-document:  Archive](https://doi.org/10.48436/yaecs-dgr27){ .md-button .md-button--secondary target="_blank" }
## Description
TBD
## Solution
TBD
## DBRepo Features
- [x] Complex database schema
- [x] Complex views
- [x] System versioning
- [x] Subset exploration
\ No newline at end of file
......@@ -287,7 +287,7 @@ public interface MariaDbMapper {
.append(ck)
.append(")"));
}
if (!data.getDescription().isBlank()) {
if (data.getDescription() != null && !data.getDescription().isBlank()) {
/* create table comments */
stringBuilder.append(" COMMENT \"")
.append(data.getDescription())
......
No preview for this file type
......@@ -43,6 +43,3 @@ export default {
}
}
</script>
<script setup lang="ts">
</script>
......@@ -13,6 +13,8 @@
"dependencies": {
"@fontsource/open-sans": "^5.0.24",
"@mdi/font": "^7.4.47",
"@nuxtjs/robots": "^3.0.0",
"@nuxtjs/sitemap": "^5.2.0",
"@pinia/nuxt": "^0.5.1",
"ace-builds": "^1.32.6",
"axios": "^1.6.7",
......
export default defineNuxtPlugin((nuxtApp) => {
const config = useRuntimeConfig();
nuxtApp.provide('backendURL', () => {
if (process.server && !process.dev) {
return config.public.backendURLServer;
} else {
return config.public.backendURL;
}
});
})
......@@ -44,6 +44,7 @@ nav:
- Customization: api/ui.md
- Examples:
- COVID-19 Tweets: examples/covid19.md
- Hazardous Materials: examples/hazard.md
- Influenza Monitoring: examples/influenza.md
- Manufacturing Data: examples/manufacturing.md
- Power Usage: examples/power.md
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment