database migrate: Use truncate
This commit is contained in:
parent
07c6e8878b
commit
b860b46e52
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ my @migrations = (
|
||||||
my ($dbh) = @_;
|
my ($dbh) = @_;
|
||||||
return $dbh->do(
|
return $dbh->do(
|
||||||
qq{
|
qq{
|
||||||
delete from journey_stats;
|
truncate journey_stats;
|
||||||
update schema_version set version = 3;
|
update schema_version set version = 3;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue