mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 01:01:35 +03:00
b4bb57b2a5
Co-authored-by: Himself65 <himself65@outlook.com>
20 lines
409 B
TypeScript
20 lines
409 B
TypeScript
import userA from '@affine-test/fixtures/userA.json' assert { type: 'json' };
|
|
import { PrismaClient } from '@prisma/client';
|
|
const prisma = new PrismaClient();
|
|
|
|
async function main() {
|
|
await prisma.user.create({
|
|
data: userA,
|
|
});
|
|
}
|
|
|
|
main()
|
|
.then(async () => {
|
|
await prisma.$disconnect();
|
|
})
|
|
.catch(async e => {
|
|
console.error(e);
|
|
await prisma.$disconnect();
|
|
process.exit(1);
|
|
});
|