VVP
VVP

Reputation: 57

MySQL triggers alteration

Is there any way how to update automatically mysql trigger(s) structure, every time when I alter a table?

Upvotes: 2

Views: 227

Answers (1)

OMG Ponies
OMG Ponies

Reputation: 332661

No - any alteration that impacts the trigger requires you to update separately from the ALTER TABLE statement.

Upvotes: 1

Related Questions