Einbau klassische Filter als Overlay ...
This commit is contained in:
@@ -32,7 +32,7 @@ export const users = pgTable('users', {
|
||||
export const businesses = pgTable('businesses', {
|
||||
id: uuid('id').primaryKey().defaultRandom(),
|
||||
email: varchar('email', { length: 255 }).references(() => users.email),
|
||||
type: integer('type'),
|
||||
type: varchar('type', { length: 255 }),
|
||||
title: varchar('title', { length: 255 }),
|
||||
description: text('description'),
|
||||
city: varchar('city', { length: 255 }),
|
||||
@@ -66,7 +66,7 @@ export const commercials = pgTable('commercials', {
|
||||
id: uuid('id').primaryKey().defaultRandom(),
|
||||
serialId: serial('serial_id'),
|
||||
email: varchar('email', { length: 255 }).references(() => users.email),
|
||||
type: integer('type'),
|
||||
type: varchar('type', { length: 255 }),
|
||||
title: varchar('title', { length: 255 }),
|
||||
description: text('description'),
|
||||
city: varchar('city', { length: 255 }),
|
||||
|
||||
Reference in New Issue
Block a user