Jump to content
  • 0

How do i put this in my phpmyadmin?


Question

Posted

 

 

 
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.

2 answers to this question

Recommended Posts

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...