(...parts: readonly string[])
| 54 | }; |
| 55 | |
| 56 | const stableId = (...parts: readonly string[]): Effect.Effect<string> => |
| 57 | sha256Hex(JSON.stringify(parts)).pipe(Effect.map((hash) => `service_split_${hash}`)); |
| 58 | |
| 59 | const tableExists = (client: SqliteDataMigrationClient, table: string) => |
| 60 | execute(client, { |