Created
July 10, 2023 20:53
-
-
Save adrian-cid/7f69db3addbe55ffe7484c98faea3244 to your computer and use it in GitHub Desktop.
Migration tables in the database in Drupal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT table_name from information_schema.tables where table_schema = 'db' and table_name like '%migrate%'; | |
//The database needs to be checked before sometimes the table names can use another name. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment