down.sql

The down script removes both functions, if they exist:

DROP FUNCTION IF EXISTS diesel_manage_updated_at(_tbl regclass);
DROP FUNCTION IF EXISTS diesel_set_updated_at();

This was a default migration created by the diesel tool. As you can see, it contains a functionality you can drop or replace with your own. Now, we can add the users table to the next migration.