0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

[ci] format

This commit is contained in:
Arsh 2024-04-02 15:38:27 +00:00 committed by astrobot-houston
parent 713f99e849
commit 953695ec2d

View file

@ -3,9 +3,9 @@ import { type SQL, sql } from 'drizzle-orm';
import type { LibSQLDatabase } from 'drizzle-orm/libsql'; import type { LibSQLDatabase } from 'drizzle-orm/libsql';
import { SQLiteAsyncDialect } from 'drizzle-orm/sqlite-core'; import { SQLiteAsyncDialect } from 'drizzle-orm/sqlite-core';
import { type DBTables } from '../core/types.js'; import { type DBTables } from '../core/types.js';
import { AstroDbError } from './utils.js';
import { SEED_DEFAULT_EXPORT_ERROR } from './errors.js'; import { SEED_DEFAULT_EXPORT_ERROR } from './errors.js';
import { getCreateIndexQueries, getCreateTableQuery } from './queries.js'; import { getCreateIndexQueries, getCreateTableQuery } from './queries.js';
import { AstroDbError } from './utils.js';
const sqlite = new SQLiteAsyncDialect(); const sqlite = new SQLiteAsyncDialect();