2
I am assuming you are using the module with folder name "randomquote".
This is a snippet of the sql file it uses, when the module is installed:
Quote:
...
CREATE TABLE citas (
id int(11) NOT NULL auto_increment,
texto varchar(255) NOT NULL default '',
autor varchar(255) NOT NULL default '',
PRIMARY KEY (id),
KEY id (id)
) TYPE=MyISAM;
You can see that we have 3 columns: ID/Quote Text/Quote Author; created during install.
If you want to have quotes also installed at the same time, you will need to add something like this at the end:
Quote:
INSERT INTO `citas` VALUES (1, 'QUOTETEXT1', 'AUTHOR1');
INSERT INTO `citas` VALUES (2, 'QUOTETEXT2', 'AUTHOR2');
INSERT INTO `citas` VALUES (3, 'QUOTETEXT3', 'AUTHOR3');
...
This should do the trick, if I understood your request correctly.