Jump to content

Finding My Table Creation Code


MoFish

Recommended Posts

hello, im wanting to shift my website over to another web-server.
the actuall content im not worryed about, actually im looknig forward to a fresh start.

is there anyway I can generate my current tables SQL creation code (like below)? or do i need to manually go through them all typing them all out.

[code]
CREATE TABLE comment (
uname varchar(20) NOT NULL default '',
ucomment longtext NOT NULL,
ip varchar(20) NOT NULL default '',
time varchar(50) NOT NULL default '',
id int(11) NOT NULL auto_increment,
PRIMARY KEY (id)
) TYPE=MyISAM;
[/code]

Thanks MoFish
Link to comment
https://forums.phpfreaks.com/topic/8488-finding-my-table-creation-code/
Share on other sites

Guest askjames01
are you migrating under linux or windows server?

If you are using linux then you can use PHPADMIN.

or if you are under windows then surely there is a tool for creating table
automatically without bothering you for retyping those codes.
Just look for that tool in it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.