10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
import { integer, sqliteTable, text } from 'drizzle-orm/sqlite-core'
|
|
|
|
export const storageSpaces = sqliteTable('storage_spaces', {
|
|
id: integer('id').primaryKey({ autoIncrement: true }),
|
|
name: text('name').notNull(),
|
|
description: text('description'),
|
|
aliases: text('aliases').notNull().default('[]'),
|
|
// JSON array string of image URLs
|
|
imageUrls: text('image_urls').notNull().default('[]'),
|
|
})
|