Advertisement
Guest User

Untitled

a guest
Oct 12th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. Cliff@Cliff-PC MINGW64 ~/Desktop/project/openmrs-core/liquibase (TRUNK-5968)
  2. $ mvn -DoutputChangelogfile=liquibase-schema-only-SNAPSHOT.xml -Dusername=root -Dpassword=my-password liquibase:generateChangeLog
  3. [INFO] Scanning for projects...
  4. [INFO]
  5. [INFO] --------------< org.openmrs.liquibase:openmrs-liquibase >---------------
  6. [INFO] Building openmrs-liquibase 2.5.0-SNAPSHOT
  7. [INFO] --------------------------------[ jar ]---------------------------------
  8. [INFO]
  9. [INFO] --- liquibase-maven-plugin:3.10.2:generateChangeLog (default-cli) @ openmrs-liquibase ---
  10. [INFO] ------------------------------------------------------------------------
  11. [INFO]
  12. [INFO]
  13. [INFO] Liquibase Community 3.10.2 by Datical
  14. [INFO] ####################################################
  15. ## _ _ _ _ ##
  16. ## | | (_) (_) | ##
  17. ## | | _ __ _ _ _ _| |__ __ _ ___ ___ ##
  18. ## | | | |/ _` | | | | | '_ \ / _` / __|/ _ \ ##
  19. ## | |___| | (_| | |_| | | |_) | (_| \__ \ __/ ##
  20. ## \_____/_|\__, |\__,_|_|_.__/ \__,_|___/\___| ##
  21. ## | | ##
  22. ## |_| ##
  23. ## ##
  24. ## Get documentation at docs.liquibase.com ##
  25. ## Get certified courses at learn.liquibase.com ##
  26. ## Get advanced features and support at ##
  27. ## liquibase.com/protrial ##
  28. ## ##
  29. ####################################################
  30. Starting Liquibase at Mon, 12 Oct 2020 11:41:10 EAT (version 3.10.2 #22 built at Mon Jul 27 04:21:02 UTC 2020)
  31. [INFO] Executing on Database: jdbc:mysql://127.0.0.1:3306/openmrs
  32. [INFO] Generating Change Log from database root@localhost @ jdbc:mysql://127.0.0.1:3306/openmrs (Default Schema: openmrs)
  33. [INFO] BEST PRACTICE: The changelog generated by diffChangeLog/generateChangeLog should be inspected for correctness and completeness before being deployed
  34. [INFO] select const.CONSTRAINT_NAME, COLUMN_NAME from information_schema.table_constraints const join information_schema.key_column_usage col on const.constraint_schema=col.constraint_schema and const.table_name=col.table_name and const.constraint_name=col.constraint_name where const.constraint_schema='openmrs' and const.table_name='order_set_attribute_type' and const.constraint_name='name'order by ordinal_position
  35. [INFO] select const.CONSTRAINT_NAME, COLUMN_NAME from information_schema.table_constraints const join information_schema.key_column_usage col on const.constraint_schema=col.constraint_schema and const.table_name=col.table_name and const.constraint_name=col.constraint_name where const.constraint_schema='openmrs' and const.table_name='order_set_attribute_type' and const.constraint_name='uuid'order by ordinal_position
  36. [INFO] CREATE TABLE TMP_GNOEXHKVFFJGSAXW (
  37. id INT PRIMARY KEY,
  38. self_ref INT NOT NULL,
  39. CONSTRAINT c_self_ref FOREIGN KEY(self_ref) REFERENCES TMP_GNOEXHKVFFJGSAXW(id)
  40. )
  41. [INFO] DROP TABLE TMP_GNOEXHKVFFJGSAXW
  42. [INFO] select const.CONSTRAINT_NAME, COLUMN_NAME from information_schema.table_constraints const join information_schema.key_column_usage col on const.constraint_schema=col.constraint_schema and const.table_name=col.table_name and const.constraint_name=col.constraint_name where const.constraint_schema='openmrs' and const.table_name='users' and const.constraint_name='email'order by ordinal_position
  43. [INFO] select const.CONSTRAINT_NAME, COLUMN_NAME from information_schema.table_constraints const join information_schema.key_column_usage col on const.constraint_schema=col.constraint_schema and const.table_name=col.table_name and const.constraint_name=col.constraint_name where const.constraint_schema='openmrs' and const.table_name='person' and const.constraint_name='uuid'order by ordinal_position
  44. [INFO] select const.CONSTRAINT_NAME, COLUMN_NAME from information_schema.table_constraints const join information_schema.key_column_usage col on const.constraint_schema=col.constraint_schema and const.table_name=col.table_name and const.constraint_name=col.constraint_name where const.constraint_schema='openmrs' order by ordinal_position
  45.  
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement