Advertisement
Aokromes

mysql retard

Dec 18th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. -- default mysql way, fast and hard to handle with git when having to update between pull requests and branches
  2. INSERT INTO `updates` VALUES ('2015_03_20_00_characters.sql','B761760804EA73BD297F296C5C1919687DF7191C','ARCHIVED','2015-03-21 21:44:15',0),('2015_03_20_01_characters.sql','894F08B70449A5481FFAF394EE5571D7FC4D8A3A','ARCHIVED','2015-03-21 21:44:15',0);
  3.  
  4. -- mysqldump —extended-insert=FALSE < SLOW to import, easy to handle with git when having to update between pull requests and branches
  5. INSERT INTO `updates` VALUES ('2015_03_20_00_characters.sql','B761760804EA73BD297F296C5C1919687DF7191C','ARCHIVED','2015-03-21 21:44:15',0);
  6. INSERT INTO `updates` VALUES ('2015_03_20_01_characters.sql','894F08B70449A5481FFAF394EE5571D7FC4D8A3A','ARCHIVED','2015-03-21 21:44:15',0);
  7.  
  8. -- mysqldump —one-row-value=TRUE < feature request, fast to import, easy to handle with git when having to update between pull requests and branches
  9. INSERT INTO `updates` VALUES
  10. ('2015_03_20_00_characters.sql','B761760804EA73BD297F296C5C1919687DF7191C','ARCHIVED','2015-03-21 21:44:15',0),
  11. ('2015_03_20_01_characters.sql','894F08B70449A5481FFAF394EE5571D7FC4D8A3A','ARCHIVED','2015-03-21 21:44:15',0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement