fadosolrelamisi
OpenCart-TR
- Katılım
- 4 Nis 2012
- Mesajlar
- 37
- Tepkime puanı
- 0
- Puanları
- 6
Bu işlemin nasıl yapılacağı anlatılmış ancak ben anlamadım. Database tablosunu nasıl ve nereden oluşturacağım? Anlayan tecrübeli biri yardımcı olur anlatırsa sevinirim.
Teşekkürler.
CREATE DATABASE
========================
Create a DATABASE TABLE for customer verification.
Copy the code below replacing 'PREFIX_customer_verification' with your database prefix equivalent. If you don't have a prefix on your database, replace PREFIX_customer_verification with customer_verification
/* [ START COPYING BELOW THIS LINE*/
CREATE TABLE `PREFIX_customer_verification` ( `customer_id` INT(11) NOT NULL, `verification_code` VARCHAR(32) NOT NULL COLLATE utf8_bin, UNIQUE(`customer_id`) ) ENGINE=MyISAM COLLATE utf8_bin
/* END COPY ABOVE THIS LINE] *
Teşekkürler.
CREATE DATABASE
========================
Create a DATABASE TABLE for customer verification.
Copy the code below replacing 'PREFIX_customer_verification' with your database prefix equivalent. If you don't have a prefix on your database, replace PREFIX_customer_verification with customer_verification
/* [ START COPYING BELOW THIS LINE*/
CREATE TABLE `PREFIX_customer_verification` ( `customer_id` INT(11) NOT NULL, `verification_code` VARCHAR(32) NOT NULL COLLATE utf8_bin, UNIQUE(`customer_id`) ) ENGINE=MyISAM COLLATE utf8_bin
/* END COPY ABOVE THIS LINE] *