export const fullStatute = pgMaterializedView("statute_search", {
* column names and their types
}).as(
sql.raw(`
SELECT
* some columns here
FROM
* first table
INNER JOIN
* second table
ON
* condition;
`),
);
export const fullStatute = pgMaterializedView("statute_search", {
* column names and their types
}).as(
sql.raw(`
SELECT
* some columns here
FROM
* first table
INNER JOIN
* second table
ON
* condition;
`),
);