Skip to content

Instantly share code, notes, and snippets.

.blue{background-color:#4A7496;}
.green{background-color:#49796B;}
.grey{background-color:#888}
.etched{
width:100px;
height:100px;
border:1px solid rgba(0,0,0,0.4);
position:relative;
border-radius:1px 0 0 1px;
box-shadow:1px 1px 2px -1px #000;
.blue{background-color:#4A7496;}
.green{background-color:#49796B;}
.grey{background-color:#888}
.etched{
width:100px;
height:100px;
border:1px solid rgba(0,0,0,0.4);
position:relative;
border-radius:1px 0 0 1px;
box-shadow:1px 1px 2px -1px #000;
@xcobary
xcobary / NigeriaBanks
Created May 8, 2015 13:37
Sql List of all Banks in Nigeria
//Tis is to create a table for the bank in nigeria
CREATE TABLE `banks` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
//Inserting list of banks in Nigeria into the table create above
NSERT INTO `banks` (`id`, `name`, `created_at`, `updated_at`) VALUES