Eimis
Eimis
CDCloudflare Developers
Created by Eimis on 5/13/2024 in #general-help
Cloudflare WARP macOS Version 2024.3.444.0 (20240508.13) FaceTime problems.
anyone??
6 replies
CDCloudflare Developers
Created by Eimis on 5/13/2024 in #general-help
Cloudflare WARP macOS Version 2024.3.444.0 (20240508.13) FaceTime problems.
6 replies
CDCloudflare Developers
Created by stackptr on 6/27/2024 in #general-help
Is non HTTP traffic against TOS?
13 replies
CDCloudflare Developers
Created by stackptr on 6/27/2024 in #general-help
Is non HTTP traffic against TOS?
you can self host tailscale and use same apps to connect. https://headscale.net
13 replies
CDCloudflare Developers
Created by Eimis on 5/13/2024 in #general-help
Cloudflare WARP macOS Version 2024.3.444.0 (20240508.13) FaceTime problems.
anyone?
6 replies
CDCloudflare Developers
Created by Eimis on 5/13/2024 in #general-help
Cloudflare WARP macOS Version 2024.3.444.0 (20240508.13) FaceTime problems.
Still not working with latest update.
6 replies
CDCloudflare Developers
Created by Eimis on 5/13/2024 in #general-help
Cloudflare WARP macOS Version 2024.3.444.0 (20240508.13) FaceTime problems.
No special rules for firewall and network.
6 replies
DTDrizzle Team
Created by Derock on 12/19/2023 in #help
`no such table: main.__old_push_projects` after db push
but had to start with fresh db
19 replies
DTDrizzle Team
Created by Derock on 12/19/2023 in #help
`no such table: main.__old_push_projects` after db push
I had same error with turso using drizzle-kit push:sqlite
19 replies
DTDrizzle Team
Created by Derock on 12/19/2023 in #help
`no such table: main.__old_push_projects` after db push
try to create migration file migrate.ts with something like this:
import { migrate } from 'drizzle-orm/libsql/migrator';

const db = const orgClient = createClient({ url: env.LIBSQL_URL });
const migrate = async () => {
await migrate(db, { migrationsFolder: YOUR_MIGRATION_FOLDER });
}

void migrate();
import { migrate } from 'drizzle-orm/libsql/migrator';

const db = const orgClient = createClient({ url: env.LIBSQL_URL });
const migrate = async () => {
await migrate(db, { migrationsFolder: YOUR_MIGRATION_FOLDER });
}

void migrate();
and change migrate script to: yarn tsx ./migrate.ts
19 replies
DTDrizzle Team
Created by jakeleventhal on 12/24/2023 in #help
Question about handling upsert case
You are right. just dont send ID - will create. if there will be an id - it will update.
29 replies