20 lines
377 B
SQL
20 lines
377 B
SQL
#
|
|
# Table structure for table 'tt_content'
|
|
#
|
|
CREATE TABLE tt_content (
|
|
altText text,
|
|
imagecaption text,
|
|
imagecaption_position varchar(6) DEFAULT '' NOT NULL,
|
|
image_link text,
|
|
image_frames int(11) unsigned DEFAULT '0' NOT NULL,
|
|
longdescURL text,
|
|
titleText text
|
|
);
|
|
|
|
#
|
|
# Table structure for table 'pages'
|
|
#
|
|
CREATE TABLE pages (
|
|
storage_pid int(11) DEFAULT '0' NOT NULL
|
|
);
|