Jump to content
  • 0

Mysql быстрое создание таблиц framework


ekkl
 Share

Question

Для быстрого создания html сущуствует, например jade, которое упрощает построение кода. И исключает эффект незакрытого тэга.

Существует ли такой инструмент для быстрого создания CREATE TABLE запросов

Например:


CREATE TABLE {posts} (
id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
version bigint(20) unsigned NOT NULL DEFAULT '0',
author bigint(20) unsigned NOT NULL DEFAULT '0',
title text NOT NULL,
body longtext NOT NULL,
teaser text,
status varchar(20) NOT NULL DEFAULT 'draft',
promote tinyint(1) NOT NULL DEFAULT '0',
moderate tinyint(1) NOT NULL DEFAULT '0',
sticky tinyint(1) NOT NULL DEFAULT '0',
type varchar(20) NOT NULL DEFAULT 'post',
format tinyint(4) NOT NULL DEFAULT '1',
created int(11) NOT NULL DEFAULT '0',
updated int(11) NOT NULL DEFAULT '0',
pubdate int(11) NOT NULL DEFAULT '0',
password varchar(20) DEFAULT '',
comment tinyint(4) NOT NULL DEFAULT '0',
lang varchar(12) NOT NULL DEFAULT 'en',
layout varchar(255) NOT NULL,
image varchar(255) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Видно, что почти в каждой строке есть int(11) NOT NULL DEFAULT '0'.

Например, указываю только поля, если тип не указан, значить автоматом добавить int(11) NOT NULL DEFAULT '0', Потом указать тип и кодировку, которая автоматически будут добавлена к каждой таблице.

Или такого в принципе нет и быть не может?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy