Yes - 100MB is the limit for now. We aren’t increasing database limits _yet_. Hold tight.
Yes - 100MB is the limit for now. We aren’t increasing database limits yet. Hold tight.
e68dccd4-7bf7-4860-ba18-17978966ec10 is on the older alpha backend)error.cause into the top-level error soon. It might break a few folks who are exact string matching: no real way around this. Luck of an alpha error.cause around until open beta, then trim that up.migrations_dir with the cli? I'm working on a pages project and it doesn't have a wrangler.toml file. So I'm trying a script like npx wrangler d1 migrations apply <DB> --migrations-dir=<dir> but it's not working.error.cause 
.cause is standard, unfortunately 
parseInt to get the query to function. Figuring it out through process of elimination is time-consuming and I ended up having to remove bound parameters one by one until I identified which one was causing the issue so that I could trace back why that value was being bound improperly.ALTER TABLE statements released within the week or so.current_timestamp, current_time, and current_date should now work outside of CREATE TABLE statements now:wrangler d1 migrations apply production-y flag (not supported yet). You should be able to echo | wrangler d1 migrations apply <db-name> to non-interactively confirme68dccd4-7bf7-4860-ba18-17978966ec10error.causeerror.causeerror.causemigrations_dirnpx wrangler d1 migrations apply <DB> --migrations-dir=<dir>.causeparseInt➜ wrangler d1 execute db-enam --command "SELECT json_object('hello', 1, 'world', 2, 'foo', 3, 'bar', 4, 'baz', 5, 'quux', 6, 'floop', 7)"
🌀 Mapping SQL input into an array of statements
🌀 Parsing 1 statements
🚣 Executed 1 commands in 0.1332309991121292ms
┌──────────────────────────────────────────────────────────────────────────────────────────┐
│ json_object('hello', 1, 'world', 2, 'foo', 3, 'bar', 4, 'baz', 5, 'quux', 6, 'floop', 7) │
├──────────────────────────────────────────────────────────────────────────────────────────┤
│ {"hello":1,"world":2,"foo":3,"bar":4,"baz":5,"quux":6,"floop":7} │
└──────────────────────────────────────────────────────────────────────────────────────────┘ALTER TABLEcurrent_timestampcurrent_timecurrent_date➜ wrangler d1 execute db-enam --command "SELECT current_timestamp, current_time, current_date" --json | jq '.[].results'
[
{
"current_timestamp": "2023-06-09 16:16:37",
"current_time": "16:16:37",
"current_date": "2023-06-09"
}
]wrangler d1 migrations apply production-yecho | wrangler d1 migrations apply <db-name>