This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; |