mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 09:41:09 +02:00
fix(mana-auth): fix schema import paths (.schema → .ts)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
38c192b82c
commit
09ccf32091
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { text, timestamp, jsonb, integer, index } from 'drizzle-orm/pg-core';
|
||||
import { authSchema, users } from './auth.schema';
|
||||
import { authSchema, users } from './auth';
|
||||
|
||||
/**
|
||||
* API Keys table for programmatic access to services.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { pgSchema, text, timestamp, jsonb, index } from 'drizzle-orm/pg-core';
|
||||
import { authSchema, users } from './auth.schema';
|
||||
import { authSchema, users } from './auth';
|
||||
|
||||
/**
|
||||
* Better Auth Organization Tables
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue