How would one write a sql server DDL script that can:
For each table in database:
add column CreatedBy
add column CreateDate
add column UpdatedBy
add column UpdatedDate
Also, if the particular column already exists on the table, just skip that column.
Also, the reverse of it, for each table, drop those 4 columns.