mirror of
https://github.com/e107inc/e107.git
synced 2025-08-07 07:06:30 +02:00
new module creation
This commit is contained in:
7
e107_plugins/linkwords/linkwords_sql.php
Normal file
7
e107_plugins/linkwords/linkwords_sql.php
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE linkwords (
|
||||
linkword_id INT(10) UNSIGNED NOT NULL auto_increment,
|
||||
linkword_active tinyint(1) unsigned NOT NULL default '0',
|
||||
linkword_word varchar(100) NOT NULL default '',
|
||||
linkword_link varchar(150) NOT NULL default '',
|
||||
PRIMARY KEY (linkword_id)
|
||||
) TYPE=MyISAM AUTO_INCREMENT=1;
|
Reference in New Issue
Block a user