logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

wiki-toolkit-revert-to-date - Revert the state of a Wiki::Toolkit instance to an earlier point in time.

Author

       Nick Burch

Description

       Takes three mandatory arguments:

       type
           The database type.  Should be one of 'postgres', 'mysql' and 'sqlite'.

       name
           The database name.

       date
           The date to revert the state back to, in the format YYYY-MM-DD

       five optional arguments:

       time
           The  time  (on  the  specified  date)  to  revert  the  state back to, in the format hh:mm:ss. If not
           specified, will use midnight.

       user
           The user that connects to the database. It must have permission to create  and  drop  tables  in  the
           database.

       pass
           The user's database password.

       host
           The hostname of the machine the database server is running on (omit for local databases).

       port
           The port number that the database server is expecting connections to.

Name

       wiki-toolkit-revert-to-date - Revert the state of a Wiki::Toolkit instance to an earlier point in time.

See Also

       Wiki::Toolkit

perl v5.32.0                                       2021-01-04                    WIKI-TOOLKIT-REVERT-TO-DATE(1p)

Synopsis

         # Removes any changes made to a Wiki::Toolkit instance since a given date
         #  (and optionally time), restoring it to the state at that point.

         wiki-toolkit-revert-to-date --type postgres
                  --name mywiki \
                  --user wiki  \
                  --pass wiki \
                  --host 'db.example.com' \
                  --port 1234 \
                  --date 2007-01-05 \
                  --time 11:23:21

See Also