Se cambiaron las columnas de bibliografia_asignatura
Se quitó la columna tipo_fuente y se renombró 'biblioteca_item_id' porque ahora se utilizarán las columnas referencia_bibliografia y referencia_en_linea para determinar el tipo de fuente
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
export type Json =
|
||||
export type Json =
|
||||
| string
|
||||
| number
|
||||
| boolean
|
||||
@@ -263,35 +263,35 @@ export type Database = {
|
||||
Row: {
|
||||
actualizado_en: string
|
||||
asignatura_id: string
|
||||
biblioteca_item_id: string | null
|
||||
cita: string
|
||||
creado_en: string
|
||||
creado_por: string | null
|
||||
id: string
|
||||
referencia_biblioteca: string | null
|
||||
referencia_en_linea: string | null
|
||||
tipo: Database["public"]["Enums"]["tipo_bibliografia"]
|
||||
tipo_fuente: Database["public"]["Enums"]["tipo_fuente_bibliografia"]
|
||||
}
|
||||
Insert: {
|
||||
actualizado_en?: string
|
||||
asignatura_id: string
|
||||
biblioteca_item_id?: string | null
|
||||
cita: string
|
||||
creado_en?: string
|
||||
creado_por?: string | null
|
||||
id?: string
|
||||
referencia_biblioteca?: string | null
|
||||
referencia_en_linea?: string | null
|
||||
tipo: Database["public"]["Enums"]["tipo_bibliografia"]
|
||||
tipo_fuente?: Database["public"]["Enums"]["tipo_fuente_bibliografia"]
|
||||
}
|
||||
Update: {
|
||||
actualizado_en?: string
|
||||
asignatura_id?: string
|
||||
biblioteca_item_id?: string | null
|
||||
cita?: string
|
||||
creado_en?: string
|
||||
creado_por?: string | null
|
||||
id?: string
|
||||
referencia_biblioteca?: string | null
|
||||
referencia_en_linea?: string | null
|
||||
tipo?: Database["public"]["Enums"]["tipo_bibliografia"]
|
||||
tipo_fuente?: Database["public"]["Enums"]["tipo_fuente_bibliografia"]
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
@@ -474,6 +474,7 @@ export type Database = {
|
||||
estado: Database["public"]["Enums"]["estado_conversacion"]
|
||||
id: string
|
||||
intento_archivado: number
|
||||
nombre: string | null
|
||||
openai_conversation_id: string
|
||||
}
|
||||
Insert: {
|
||||
@@ -486,6 +487,7 @@ export type Database = {
|
||||
estado?: Database["public"]["Enums"]["estado_conversacion"]
|
||||
id?: string
|
||||
intento_archivado?: number
|
||||
nombre?: string | null
|
||||
openai_conversation_id: string
|
||||
}
|
||||
Update: {
|
||||
@@ -498,6 +500,7 @@ export type Database = {
|
||||
estado?: Database["public"]["Enums"]["estado_conversacion"]
|
||||
id?: string
|
||||
intento_archivado?: number
|
||||
nombre?: string | null
|
||||
openai_conversation_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
|
||||
Reference in New Issue
Block a user