MySQL Forums
Forum List  »  Newbie

Re: Coding UTF-8 / Czech
Posted by: Stepan Vesely
Date: August 19, 2016 10:11AM

SHOW CREATE DATABASE prestashop_03

Database Create Database

prestashop_03 CREATE DATABASE `prestashop_03` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_czech_ci */


SHOW CREATE TABLE ps_configuration

Table Create Table
ps_configuration

CREATE TABLE `ps_configuration` (
`id_configuration` int(10) unsigned NOT NULL AUTO_INCREMENT,
`id_shop_group` int(11) unsigned DEFAULT NULL,
`id_shop` int(11) unsigned DEFAULT NULL,
`name` varchar(254) COLLATE utf8_czech_ci NOT NULL,
`value` text COLLATE utf8_czech_ci,
`date_add` datetime NOT NULL,
`date_upd` datetime NOT NULL,
PRIMARY KEY (`id_configuration`),
KEY `name` (`name`),
KEY `id_shop` (`id_shop`),
KEY `id_shop_group` (`id_shop_group`)
) ENGINE=InnoDB AUTO_INCREMENT=372 DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci

Options: ReplyQuote


Subject
Written By
Posted
August 16, 2016 03:05AM
August 16, 2016 10:19AM
August 16, 2016 10:36AM
August 16, 2016 02:42PM
August 17, 2016 01:48AM
August 18, 2016 06:40PM
August 18, 2016 08:16PM
Re: Coding UTF-8 / Czech
August 19, 2016 10:11AM
August 19, 2016 02:43PM
August 22, 2016 03:29AM
August 22, 2016 10:18AM
August 22, 2016 01:49PM
August 22, 2016 03:02PM
August 22, 2016 03:32PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.