@compfest-18/oppenheimer-schema 0.0.9 → 0.0.10

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 CHANGED
@@ -1371,6 +1371,40 @@ declare const xcelerateRegistrations: drizzle_orm_pg_core.PgTableWithColumns<{
1371
1371
  identity: undefined;
1372
1372
  generated: undefined;
1373
1373
  }, {}, {}>;
1374
+ cvUrl: drizzle_orm_pg_core.PgColumn<{
1375
+ name: "cv_url";
1376
+ tableName: "xcelerate_registrations";
1377
+ dataType: "string";
1378
+ columnType: "PgText";
1379
+ data: string;
1380
+ driverParam: string;
1381
+ notNull: false;
1382
+ hasDefault: false;
1383
+ isPrimaryKey: false;
1384
+ isAutoincrement: false;
1385
+ hasRuntimeDefault: false;
1386
+ enumValues: [string, ...string[]];
1387
+ baseColumn: never;
1388
+ identity: undefined;
1389
+ generated: undefined;
1390
+ }, {}, {}>;
1391
+ cvFileName: drizzle_orm_pg_core.PgColumn<{
1392
+ name: "cv_file_name";
1393
+ tableName: "xcelerate_registrations";
1394
+ dataType: "string";
1395
+ columnType: "PgText";
1396
+ data: string;
1397
+ driverParam: string;
1398
+ notNull: false;
1399
+ hasDefault: false;
1400
+ isPrimaryKey: false;
1401
+ isAutoincrement: false;
1402
+ hasRuntimeDefault: false;
1403
+ enumValues: [string, ...string[]];
1404
+ baseColumn: never;
1405
+ identity: undefined;
1406
+ generated: undefined;
1407
+ }, {}, {}>;
1374
1408
  deletedAt: drizzle_orm_pg_core.PgColumn<{
1375
1409
  name: "deleted_at";
1376
1410
  tableName: "xcelerate_registrations";
package/dist/index.mjs CHANGED
@@ -239,6 +239,8 @@ var xcelerateRegistrations = pgTable6(
239
239
  jobCategory: text6("job_category"),
240
240
  knowEventSource: knowEventSourceEnum("know_event_source"),
241
241
  batch: text6("batch"),
242
+ cvUrl: text6("cv_url"),
243
+ cvFileName: text6("cv_file_name"),
242
244
  deletedAt: timestamp6("deleted_at"),
243
245
  createdAt: timestamp6("created_at").notNull().defaultNow(),
244
246
  updatedAt: timestamp6("updated_at").notNull().defaultNow()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compfest-18/oppenheimer-schema",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Drizzle ORM schema for Oppenheimer database",
5
5
  "author": "COMPFEST",
6
6
  "license": "UNLICENSED",