kin: KIN-INFRA-013 Добавить UNIQUE-ограничение на project_links(from_project, to_project, type)

This commit is contained in:
Gros Frumos 2026-03-17 18:37:14 +02:00
parent 7ef0b9d4ef
commit 377639c04d

View file

@ -395,7 +395,7 @@ const links = ref<ProjectLink[]>([])
const linksLoading = ref(false) const linksLoading = ref(false)
const linksError = ref('') const linksError = ref('')
const showAddLink = ref(false) const showAddLink = ref(false)
const linkForm = ref({ to_project: '', link_type: 'depends_on', description: '' }) const linkForm = ref({ to_project: '', type: 'depends_on', description: '' })
const linkFormError = ref('') const linkFormError = ref('')
const linkSaving = ref(false) const linkSaving = ref(false)