Does seed automatically run my RDS migrations? The...
# seed
d
Does seed automatically run my RDS migrations? The documentation of SST says that deploy does it, but I don’t have them ran.
While digging a bit I can see it creates this lambda:
Copy code
AnalyticsRDSMigrationFunctionF971B788
The logs of this lambda are:
I tried to deploy another environment with sst deploy from my computer and same problem in the other account. Not sure if this is something on SST or my side.
t
Can you go to latest sst? Think we fixed this
d
Let me try
I’m going from
0.65.6
to
0.69.0
Still not working
I went to the Lambda and tested it manually. It then executed the 3 of them at once.
Seed wasn’t able to execute it, but manually it worked.
t
ah weird
f
@Daniel Gato can you try deploying to new environment from ur local (running
sst deploy --stage new-stage
) and see if that works?
To add some context, the migration function is actually a custom resource as a part of the CloudFormation template. And during the deployment, CloudFormation invokes the migration function. Seed does not and cannot affect the migration function. So I want to rule Seed out of the picture first.