[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
1import { int, sqliteTable, text } from "drizzle-orm/sqlite-core";
2
3export const routes = sqliteTable("routes", {
4 id: int("id").primaryKey({ autoIncrement: true }),
5 did: text("did").notNull(),
6 url_route: text("url_route").notNull(),
7 blob_cid: text("blob_cid").notNull(),
8 mime: text("mime").notNull(),
9});