MrKoops
Explore posts from serversTTCTheo's Typesafe Cult
•Created by MrKoops on 12/6/2024 in #questions
Something went wrong. Please contact UploadThing and provide the following cause: TypeError: $.get(.
it does complete the upload, but still throws this error:
const uploader = createUploader('imageUploader', {
onClientUploadComplete: (res) => {
const updateOK = saveDogPicture(editingDog.id, res[0].url);
console.log('updateOK', updateOK);
},
onUploadError: (error) => {
console.log(
ERROR! ${error.message});
}
});
2 replies
DTDrizzle Team
•Created by MrKoops on 11/14/2024 in #help
pull is creating wrong schema file
i have a schema with a user table and a settings table.
the settings table has a foreign key on the user.id which is TEXT
it creates a schema where the foreign key is set to INT
it always wants to recreate the settings table, but this is not possible - it's a prod database.
1 replies