cmsm94 Posted February 26, 2014 Posted February 26, 2014 CREATE TABLE `bank` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `account_id` INT(10) UNSIGNED NOT NULL, `balance` BIGINT(20) UNSIGNED NOT NULL, `password` VARCHAR(32) NULL DEFAULT NULL, `created_at` TIMESTAMP NULL DEFAULT NULL, `updated_at` TIMESTAMP NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE INDEX `account_id` (`account_id`) ); I have something like this how do i install it, into my phpmyadmin? Sorry i really dont know about this, can someone help me thank you very much.
aero011 Posted February 27, 2014 Posted February 27, 2014 if you know where this table must be installed go to that database then click on upper part of phpmyadmin click sql paste that code then run
Question
cmsm94
I have something like this how do i install it, into my phpmyadmin? Sorry i really dont know about this, can someone help me thank you very much.
2 answers to this question
Recommended Posts