Skip to content

Instantly share code, notes, and snippets.

@jaganysa
jaganysa / test.ts
Created October 3, 2018 04:32
testing files
export test {
testing: 'testing'
}
@jaganysa
jaganysa / countries_nationalities_arabic_english.sql
Created March 18, 2019 05:13 — forked from FlavaSava7/countries_nationalities_arabic_english.sql
SQL Countries & Nationalities List : English and Arabic
CREATE TABLE `countries` (
`country_code` varchar(2) NOT NULL default '',
`country_enName` varchar(100) NOT NULL default '',
`country_arName` varchar(100) NOT NULL default '',
`country_enNationality` varchar(100) NOT NULL default '',
`country_arNationality` varchar(100) NOT NULL default '',
PRIMARY KEY (`country_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `countries`