Prøv at bruge dette på din SQL-fil:
sed 's/CREATE TABLE/CREATE TABLE IF NOT EXISTS/g' <file-path>
eller for at gemme
sed -i 's/CREATE TABLE/CREATE TABLE IF NOT EXISTS/g' <file-path>
det er ikke ideelt, men det virker :P
Prøv at bruge dette på din SQL-fil:
sed 's/CREATE TABLE/CREATE TABLE IF NOT EXISTS/g' <file-path>
eller for at gemme
sed -i 's/CREATE TABLE/CREATE TABLE IF NOT EXISTS/g' <file-path>
det er ikke ideelt, men det virker :P