12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- import prisma from '../../../src/prisma/PrismaClient';
- import { now } from '../../../src/utils/TimeLocal';
- const cityNames: string[] = [
- 'Kabupaten Bintan',
- 'Kabupaten Karimun',
- 'Kabupaten Kepulauan Anambas',
- 'Kabupaten Lingga',
- 'Kabupaten Natuna',
- 'Kota Batam',
- 'Kota Tanjung Pinang'
- ];
- export async function seedKepulauanRiauCities(): Promise<void> {
- const province = await prisma.province.findFirst({
- where: { name: 'Kepulauan Riau' },
- });
- if (!province) {
- console.error('❌ Province Kepulauan Riau not found. Seed it first.');
- return;
- }
- for (const name of cityNames) {
- await prisma.city.upsert({
- where: {
- name_province_id: {
- name,
- province_id: province.id,
- },
- },
- update: {
- updatedAt: now().toDate(),
- },
- create: {
- name,
- province_id: province.id,
- createdAt: now().toDate(),
- },
- });
- }
- console.log('✅ Kepulauan Riau City seeded!');
- }
- // const prisma = require('../../../src/prisma/PrismaClient.js');
- // const timeLocal = require('../../../src/utils/TimeLocal.js')
- // const cityNames = [
- // 'Kabupaten Bintan',
- // 'Kabupaten Karimun',
- // 'Kabupaten Kepulauan Anambas',
- // 'Kabupaten Lingga',
- // 'Kabupaten Natuna',
- // 'Kota Batam',
- // 'Kota Tanjung Pinang'
- // // 7
- // ];
- // exports.seedKepulauanRiauCities = async () => {
- // const province = await prisma.province.findFirst({
- // where: { name: 'Kepulauan Riau' },
- // });
- // if (!province) {
- // console.error('❌ Province Kepulauan Riau not found. Seed it first.');
- // return;
- // }
- // for (const name of cityNames) {
- // await prisma.city.upsert({
- // where: {
- // name_province_id: {
- // name,
- // province_id: province.id,
- // },
- // },
- // update: {
- // updatedAt: timeLocal.now().toDate()
- // },
- // create: {
- // name,
- // province_id: province.id,
- // createdAt: timeLocal.now().toDate()
- // },
- // });
- // }
- // console.log('✅ Kepulauan Riau City seeded!.');
- // };
|