create-cf-planetscale-app
Version:
Create a Cloudflare workers app for building production ready RESTful APIs using Hono
14 lines (12 loc) • 303 B
text/typescript
import { Generated } from 'kysely'
export interface OneTimeOauthCodeTable {
code: string
user_id: string
access_token: string
access_token_expires_at: Date
refresh_token: string
refresh_token_expires_at: Date
expires_at: Date
created_at: Generated<Date>
updated_at: Generated<Date>
}