26 lines
670 B
Plaintext
26 lines
670 B
Plaintext
INSERT INTO public."foss" (
|
|
"name",
|
|
"user_created",
|
|
"date_created",
|
|
"user_updated",
|
|
"date_updated",
|
|
"website",
|
|
"repository",
|
|
"documentation",
|
|
"public_demo",
|
|
"target_market",
|
|
"copyright_license"
|
|
)
|
|
VALUES (
|
|
'{{insert_form.formData.name}}',
|
|
'{{insert_form.formData.user_created}}',
|
|
'{{insert_form.formData.date_created}}',
|
|
'{{insert_form.formData.user_updated}}',
|
|
'{{insert_form.formData.date_updated}}',
|
|
'{{insert_form.formData.website}}',
|
|
'{{insert_form.formData.repository}}',
|
|
'{{insert_form.formData.documentation}}',
|
|
'{{insert_form.formData.public_demo}}',
|
|
'{{insert_form.formData.target_market}}',
|
|
'{{insert_form.formData.copyright_license}}'
|
|
); |