Jump to content
  • 0

How do i put this in my phpmyadmin?


cmsm94

Question


  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  170
  • Reputation:   5
  • Joined:  08/11/13
  • Last Seen:  

 

 

 
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.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  78
  • Reputation:   2
  • Joined:  08/02/12
  • Last Seen:  

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

Link to comment
Share on other sites

×
×
  • Create New...