Stored procedures/DB schema in source control

后端 未结 21 986
孤街浪徒
孤街浪徒 2020-12-04 05:56

Do you guys keep track of stored procedures and database schema in your source control system of choice?

When you make a change (add a table, update an stored proc,

21条回答
  •  忘掉有多难
    2020-12-04 06:31

    We do keep stored procedures in source control. The way we (or at least I) do it is add a folder to my project, add a file for each SP and manually copy, paste the code into it. So when I change the SP, I manually need to change the file the source control.

    I'd be interested to hear if people can do this automatically.

提交回复
热议问题