@compfest-18/oppenheimer-schema 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +17 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3240,6 +3240,23 @@ declare const competitionPaymentProofs: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
3240
3240
|
identity: undefined;
|
|
3241
3241
|
generated: undefined;
|
|
3242
3242
|
}, {}, {}>;
|
|
3243
|
+
feedback: drizzle_orm_pg_core.PgColumn<{
|
|
3244
|
+
name: "feedback";
|
|
3245
|
+
tableName: "competition_payment_proofs";
|
|
3246
|
+
dataType: "string";
|
|
3247
|
+
columnType: "PgText";
|
|
3248
|
+
data: string;
|
|
3249
|
+
driverParam: string;
|
|
3250
|
+
notNull: false;
|
|
3251
|
+
hasDefault: false;
|
|
3252
|
+
isPrimaryKey: false;
|
|
3253
|
+
isAutoincrement: false;
|
|
3254
|
+
hasRuntimeDefault: false;
|
|
3255
|
+
enumValues: [string, ...string[]];
|
|
3256
|
+
baseColumn: never;
|
|
3257
|
+
identity: undefined;
|
|
3258
|
+
generated: undefined;
|
|
3259
|
+
}, {}, {}>;
|
|
3243
3260
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3244
3261
|
name: "created_at";
|
|
3245
3262
|
tableName: "competition_payment_proofs";
|
package/dist/index.mjs
CHANGED
|
@@ -619,6 +619,7 @@ var competitionPaymentProofs = pgTable19(
|
|
|
619
619
|
fileUrl: text19("file_url").notNull(),
|
|
620
620
|
fileName: text19("file_name").notNull(),
|
|
621
621
|
status: submissionStatusEnum("status").notNull().default("PENDING"),
|
|
622
|
+
feedback: text19("feedback"),
|
|
622
623
|
createdAt: timestamp19("created_at").notNull().defaultNow(),
|
|
623
624
|
updatedAt: timestamp19("updated_at").notNull().defaultNow()
|
|
624
625
|
},
|