mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-28 04:20:32 +02:00
Merge remote-tracking branch 'github-nickvergessen/ticket/11201' into develop
* github-nickvergessen/ticket/11201: (50 commits) [ticket/11201] Remove empty calls section from .yml [ticket/11201] Split template file into multiple files [ticket/11201] Remove dependency from types on the manager [ticket/11201] Rename profilefields class to manager [ticket/11201] Fix parameter description [ticket/11201] Use !== null, its faster [ticket/11201] Also translate profile fields in UCP and ACP [ticket/11201] Add parameters and variables to profile field class [ticket/11201] Add commas on last array entry [ticket/11201] Allow translation of profile field name and explanation [ticket/11201] Fix some variable names [ticket/11201] Add tables to constructor in tests [ticket/11201] Add a method to return the translated full name of the type [ticket/11201] Remove db depending code from field class [ticket/11201] Add variables to classes and add constructor doc blocks [ticket/11201] Update copyright in class file [ticket/11201] Add visibility and remove unused variable [ticket/11201] Add some commas at the last array entry [ticket/11201] Cast some variables to integer [ticket/11201] Inject table names rather then using constants ... Conflicts: phpBB/config/services.yml
This commit is contained in:
@@ -853,7 +853,7 @@ CREATE SEQUENCE phpbb_profile_fields_seq;
|
||||
CREATE TABLE phpbb_profile_fields (
|
||||
field_id INT4 DEFAULT nextval('phpbb_profile_fields_seq'),
|
||||
field_name varchar(255) DEFAULT '' NOT NULL,
|
||||
field_type INT2 DEFAULT '0' NOT NULL,
|
||||
field_type varchar(100) DEFAULT '' NOT NULL,
|
||||
field_ident varchar(20) DEFAULT '' NOT NULL,
|
||||
field_length varchar(20) DEFAULT '' NOT NULL,
|
||||
field_minlen varchar(255) DEFAULT '' NOT NULL,
|
||||
@@ -893,7 +893,7 @@ CREATE TABLE phpbb_profile_fields_lang (
|
||||
field_id INT4 DEFAULT '0' NOT NULL CHECK (field_id >= 0),
|
||||
lang_id INT4 DEFAULT '0' NOT NULL CHECK (lang_id >= 0),
|
||||
option_id INT4 DEFAULT '0' NOT NULL CHECK (option_id >= 0),
|
||||
field_type INT2 DEFAULT '0' NOT NULL,
|
||||
field_type varchar(100) DEFAULT '' NOT NULL,
|
||||
lang_value varchar(255) DEFAULT '' NOT NULL,
|
||||
PRIMARY KEY (field_id, lang_id, option_id)
|
||||
);
|
||||
|
Reference in New Issue
Block a user