Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save faizalmansor/aaaf30d179fe7ec71f3f to your computer and use it in GitHub Desktop.
Save faizalmansor/aaaf30d179fe7ec71f3f to your computer and use it in GitHub Desktop.
Yii 2.0 - Working with Databases demo table seed
INSERT INTO `country` VALUES ('AU','Australia',18886000);
INSERT INTO `country` VALUES ('BR','Brazil',170115000);
INSERT INTO `country` VALUES ('CA','Canada',1147000);
INSERT INTO `country` VALUES ('CN','China',1277558000);
INSERT INTO `country` VALUES ('DE','Germany',82164700);
INSERT INTO `country` VALUES ('FR','France',59225700);
INSERT INTO `country` VALUES ('GB','United Kingdom',59623400);
INSERT INTO `country` VALUES ('IN','India',1013662000);
INSERT INTO `country` VALUES ('RU','Russia',146934000);
INSERT INTO `country` VALUES ('US','United States',278357000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment