You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
504 B
19 lines
504 B
--
|
|
-- База данных: `testdb`
|
|
--
|
|
CREATE DATABASE `testdb` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
|
|
USE `testdb`;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Структура таблицы `table`
|
|
--
|
|
|
|
CREATE TABLE IF NOT EXISTS `table` (
|
|
`id` int(3) NOT NULL AUTO_INCREMENT,
|
|
`content` varchar(255) NOT NULL,
|
|
`user` varchar(255) NOT NULL,
|
|
`created` datetime NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
|