7 lines
386 B
Batchfile
7 lines
386 B
Batchfile
@echo off
|
|
REM Seed the central ports + NPC factions. Run ONCE, after applying
|
|
REM sql\migrations\004_central_dispatch.sql. Idempotent (safe to re-run).
|
|
REM Requires the mysql client on PATH. You can also just paste
|
|
REM sql\seed_factions.sql into MySQL Workbench instead.
|
|
mysql -u skyramaUser -pSkyrama1234. -h 127.0.0.1 skyrama_clone < sql\seed_factions.sql
|
|
echo Done seeding factions.
|