shadcn & theme toggle
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
// Example model schema from the Drizzle docs
|
||||
// https://orm.drizzle.team/docs/sql-schema-declaration
|
||||
|
||||
import { sql } from "drizzle-orm";
|
||||
import {
|
||||
index,
|
||||
@@ -10,13 +7,7 @@ import {
|
||||
varchar,
|
||||
} from "drizzle-orm/pg-core";
|
||||
|
||||
/**
|
||||
* This is an example of how to use the multi-project schema feature of Drizzle ORM. Use the same
|
||||
* database instance for multiple projects.
|
||||
*
|
||||
* @see https://orm.drizzle.team/docs/goodies#multi-project-schema
|
||||
*/
|
||||
export const createTable = pgTableCreator((name) => `resume_website_${name}`);
|
||||
export const createTable = pgTableCreator((name) => `${name}`);
|
||||
|
||||
export const posts = createTable(
|
||||
"post",
|
||||
|
Reference in New Issue
Block a user