You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since new installations of meta-environment using VVV install newer versions of Ubuntu, MariaDB and mysqldump, taking a fresh database export gives a different output. For example, importing the file
and exporting using mysqldump produces lots of insignificant differences:
The metadata at the top is different. Eg:
--- MySQL dump 10.16 Distrib 10.1.44-MariaDB, for debian-linux-gnu (x86_64)+-- MariaDB dump 10.19 Distrib 10.4.19-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: wordpressorg_dev
-- ------------------------------------------------------
--- Server version 10.1.44-MariaDB-0ubuntu0.18.04.1+-- Server version 10.4.19-MariaDB-1:10.4.19+maria~bionic
Numbers are not quoted in the new export. Eg:
- `user_id` int(10) NOT NULL DEFAULT '0',+ `user_id` int(10) NOT NULL DEFAULT 0,
DEFAULT NULL is added to some columns. Eg:
- `description` text,+ `description` text DEFAULT NULL,
What's the recommended way to proceed?
The text was updated successfully, but these errors were encountered:
I'm about to make a PR that creates a new site under wordpressorg.test/ and wanted to confirm if these changes (which will be present in the PR) are okay to commit as a part of the new database dump.
Since new installations of
meta-environment
using VVV install newer versions of Ubuntu, MariaDB andmysqldump
, taking a fresh database export gives a different output. For example, importing the fileand exporting using
mysqldump
produces lots of insignificant differences:DEFAULT NULL
is added to some columns. Eg:What's the recommended way to proceed?
The text was updated successfully, but these errors were encountered: