You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have set my data table with the following code: create_time TEXT DEFAULT (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
This is to automatically fill in the date when manually adding data.
At least that's how it works on the data table operation page in Cloudflare D1. However, when I tried to do the same in the program of this repository, it automatically filled in the text of the default function strftime('%Y-%m-%dT%H:%M:%SZ', 'now') itself.
Typically, it should work like this: automatically filling in the date when adding.
The text was updated successfully, but these errors were encountered:
I have set my data table with the following code:
create_time TEXT DEFAULT (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
This is to automatically fill in the date when manually adding data.
At least that's how it works on the data table operation page in Cloudflare D1. However, when I tried to do the same in the program of this repository, it automatically filled in the text of the default function
strftime('%Y-%m-%dT%H:%M:%SZ', 'now')
itself.Typically, it should work like this: automatically filling in the date when adding.
The text was updated successfully, but these errors were encountered: