Is it possible to use both a .sql file and a .ts f...
# orm-help
h
Is it possible to use both a .sql file and a .ts file to seed the database, can i have multiple "seed" entries?
1
y
well, technically speaking you can't have multiple entires, but you can run any arbitrary file as a seed file, so if you just write a script to handle whatever behavior you're looking for, you can achieve your goals
h
ok thx