Ïnitial Commit module v4.0.0
This commit is contained in:
parent
16db8c2930
commit
9f26e9d49a
8 changed files with 358 additions and 0 deletions
0
sql/index.html
Normal file
0
sql/index.html
Normal file
8
sql/install.mysql.utf8.sql
Normal file
8
sql/install.mysql.utf8.sql
Normal file
|
@ -0,0 +1,8 @@
|
|||
CREATE TABLE IF NOT EXISTS `#__seers_cookie_consent` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`url` varchar(255) NULL,
|
||||
`email` varchar(255) NULL,
|
||||
`apikey` varchar(255) NULL,
|
||||
`hitcount` int(11) NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
1
sql/uninstall.mysql.utf8.sql
Normal file
1
sql/uninstall.mysql.utf8.sql
Normal file
|
@ -0,0 +1 @@
|
|||
DROP TABLE `#__seers_cookie_consent`;
|
Loading…
Add table
Add a link
Reference in a new issue