PHP 7.4.33
Preview: migrator.js Size: 1.23 KB
/var/www/gtechmarathon2026.bitkit.dk/httpdocs/node_modules/drizzle-orm/libsql/migrator.js
import { readMigrationFiles } from "../migrator.js";
import { sql } from "../sql/sql.js";
async function migrate(db, config) {
  const migrations = readMigrationFiles(config);
  const migrationsTable = config.migrationsTable ?? "__drizzle_migrations";
  const migrationTableCreate = sql`
		CREATE TABLE IF NOT EXISTS ${sql.identifier(migrationsTable)} (
			id SERIAL PRIMARY KEY,
			hash text NOT NULL,
			created_at numeric
		)
	`;
  await db.session.run(migrationTableCreate);
  const dbMigrations = await db.values(
    sql`SELECT id, hash, created_at FROM ${sql.identifier(migrationsTable)} ORDER BY created_at DESC LIMIT 1`
  );
  const lastDbMigration = dbMigrations[0] ?? void 0;
  const statementToBatch = [];
  for (const migration of migrations) {
    if (!lastDbMigration || Number(lastDbMigration[2]) < migration.folderMillis) {
      for (const stmt of migration.sql) {
        statementToBatch.push(db.run(sql.raw(stmt)));
      }
      statementToBatch.push(
        db.run(
          sql`INSERT INTO ${sql.identifier(migrationsTable)} ("hash", "created_at") VALUES(${migration.hash}, ${migration.folderMillis})`
        )
      );
    }
  }
  await db.session.migrate(statementToBatch);
}
export {
  migrate
};
//# sourceMappingURL=migrator.js.map

Directory Contents

Dirs: 6 × Files: 30
Name Size Perms Modified Actions
http DIR
- drwxr-xr-x 2025-07-10 12:55:00
Edit Download
node DIR
- drwxr-xr-x 2025-07-10 12:55:00
Edit Download
sqlite3 DIR
- drwxr-xr-x 2025-07-10 12:55:00
Edit Download
wasm DIR
- drwxr-xr-x 2025-07-10 12:55:00
Edit Download
web DIR
- drwxr-xr-x 2025-07-10 12:55:00
Edit Download
ws DIR
- drwxr-xr-x 2025-07-10 12:55:00
Edit Download
2.40 KB lrw-r--r-- 2025-07-10 12:54:57
Edit Download
3.06 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
530 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
527 B lrw-r--r-- 2025-07-10 12:55:00
Edit Download
1.31 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
3.05 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
2.17 KB lrw-r--r-- 2025-07-10 12:54:57
Edit Download
2.48 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
866 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
863 B lrw-r--r-- 2025-07-10 12:55:00
Edit Download
942 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
2.42 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
1.18 KB lrw-r--r-- 2025-07-10 12:54:58
Edit Download
220 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
61 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
59 B lrw-r--r-- 2025-07-10 12:55:00
Edit Download
92 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
181 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
2.32 KB lrw-r--r-- 2025-07-10 12:54:58
Edit Download
2.32 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
251 B lrw-r--r-- 2025-07-10 12:54:59
Edit Download
249 B lrw-r--r-- 2025-07-10 12:55:00
Edit Download
1.23 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
2.29 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
8.59 KB lrw-r--r-- 2025-07-10 12:54:58
Edit Download
15.91 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
3.72 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
3.71 KB lrw-r--r-- 2025-07-10 12:55:00
Edit Download
7.29 KB lrw-r--r-- 2025-07-10 12:54:59
Edit Download
15.90 KB lrw-r--r-- 2025-07-10 12:55:00
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).