mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +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:
@@ -191,6 +191,15 @@ CREATE TABLE phpbb_drafts (
|
||||
);
|
||||
|
||||
|
||||
# Table: 'phpbb_ext'
|
||||
CREATE TABLE phpbb_ext (
|
||||
ext_name varbinary(255) DEFAULT '' NOT NULL,
|
||||
ext_active tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
UNIQUE ext_name (ext_name),
|
||||
KEY ext_active (ext_active)
|
||||
);
|
||||
|
||||
|
||||
# Table: 'phpbb_extensions'
|
||||
CREATE TABLE phpbb_extensions (
|
||||
extension_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||
|
Reference in New Issue
Block a user