mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-16 21:54:00 +02:00
[feature/extension-manager] Extension Manager & Finder
Extensions RFC: http://area51.phpbb.com/phpBB/viewtopic.php?f=84&t=41499 Ticket: http://tracker.phpbb.com/browse/PHPBB3-10323 PHPBB3-10323
This commit is contained in:
@@ -407,6 +407,19 @@ END;
|
||||
/
|
||||
|
||||
|
||||
/*
|
||||
Table: 'phpbb_ext'
|
||||
*/
|
||||
CREATE TABLE phpbb_ext (
|
||||
ext_name varchar2(255) DEFAULT '' ,
|
||||
ext_active number(1) DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT u_phpbb_ext_name UNIQUE (ext_name)
|
||||
)
|
||||
/
|
||||
|
||||
CREATE INDEX phpbb_ext_ext_active ON phpbb_ext (ext_active)
|
||||
/
|
||||
|
||||
/*
|
||||
Table: 'phpbb_extensions'
|
||||
*/
|
||||
|
Reference in New Issue
Block a user