Drizzle misses some schema files

Hey, I just noticed that the command bun run drizzle-kit generate and drizzle-kit push does not generate migrations or pushes some of the tables I have defined in my schema files. Only three tables get applied in the database no matter how often I retry the commands. My config looks like this:

import { defineConfig } from 'drizzle-kit'
export default defineConfig({
    schema: "./src/models/*",
    dialect: 'sqlite',
    driver: 'turso',
    dbCredentials: {
        url: 'redacted',
        authToken: 'redacted'
    },
    verbose: true,
    strict: true,
})


And my models folder is attached as an image, as well as what the generated tables look like
image.png
image.png
Was this page helpful?