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:
Till JS 2026-03-28 18:17:57 +01:00
parent 38c192b82c
commit 09ccf32091
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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