Changes in / [107303c:6ce6739]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • database/drizzle/queries/components.ts

    r107303c r6ce6739  
    5050
    5151    const components = await db
    52         .select()
     52        .select({
     53            id: componentsTable.id,
     54            name: componentsTable.name,
     55            brand: componentsTable.brand,
     56            price: componentsTable.price,
     57            imgUrl: componentsTable.imgUrl
     58        })
    5359        .from(componentsTable)
    5460        .where(
Note: See TracChangeset for help on using the changeset viewer.