Skip to content

Commit 260497e

Browse files
authored
Merge pull request #151 from imaginer-dev/150-슈파메이스-수정-및-type-동기화
슈파베이스 데이터베이스와 타입 동기화
2 parents d224d6c + e0628fe commit 260497e

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

src/styles/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
@tailwind components;
33
@tailwind utilities;
44

5-
65
.userInvite {
76
display: flex;
87
justify-content: center;
@@ -14,6 +13,7 @@
1413
}
1514
.userInvite svg {
1615
margin: auto;
16+
}
1717

1818
@media (min-width: 1024px) {
1919
.drawer-toggle {

src/supabase/supabse.types.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export type Database = {
1010
end_date: string;
1111
group_id: string;
1212
id: number;
13+
memo: string | null;
1314
owner_id: string;
1415
start_date: string;
1516
title: string;
@@ -20,6 +21,7 @@ export type Database = {
2021
end_date: string;
2122
group_id?: string;
2223
id?: number;
24+
memo?: string | null;
2325
owner_id?: string;
2426
start_date: string;
2527
title: string;
@@ -30,6 +32,7 @@ export type Database = {
3032
end_date?: string;
3133
group_id?: string;
3234
id?: number;
35+
memo?: string | null;
3336
owner_id?: string;
3437
start_date?: string;
3538
title?: string;
@@ -92,8 +95,8 @@ export type Database = {
9295
color: string | null;
9396
created_at: string;
9497
end_date: string;
95-
exclude_time_end: string;
96-
exclude_time_start: string;
98+
exclude_time_end: string | null;
99+
exclude_time_start: string | null;
97100
id: number;
98101
name: string;
99102
open: boolean;
@@ -104,8 +107,8 @@ export type Database = {
104107
color?: string | null;
105108
created_at?: string;
106109
end_date: string;
107-
exclude_time_end: string;
108-
exclude_time_start: string;
110+
exclude_time_end?: string | null;
111+
exclude_time_start?: string | null;
109112
id?: number;
110113
name: string;
111114
open: boolean;
@@ -116,8 +119,8 @@ export type Database = {
116119
color?: string | null;
117120
created_at?: string;
118121
end_date?: string;
119-
exclude_time_end?: string;
120-
exclude_time_start?: string;
122+
exclude_time_end?: string | null;
123+
exclude_time_start?: string | null;
121124
id?: number;
122125
name?: string;
123126
open?: boolean;

0 commit comments

Comments
 (0)