Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/04/2012, 08:16
Avatar de elarrieux
elarrieux
 
Fecha de Ingreso: abril-2012
Ubicación: Uruguay
Mensajes: 67
Antigüedad: 12 años, 1 mes
Puntos: 26
Respuesta: error crear tabla

Hola!

Efectivamente tu problema son las comillas.

Prueba con esto:

Código:
CREATE TABLE tbl_shop_config (
sc_name VARCHAR(50) NOT NULL DEFAULT '',
sc_address VARCHAR(100) NOT NULL DEFAULT '',
sc_phone VARCHAR(30) NOT NULL DEFAULT '',
sc_email VARCHAR(30) NOT NULL DEFAULT '',
sc_shipping_cost DECIMAL(5,2) NOT NULL DEFAULT '0.00',
sc_currency INT(10) UNSIGNED NOT NULL DEFAULT '1',
sc_order_email ENUM('y','n') NOT NULL DEFAULT 'n'
) TYPE=MyISAM;
Sds.