b1af963916
Honor user blocks in ProfileReplyEditSubmit. Reduce boilerplate. Update account_privacy_profile_comments phrase. Add account_privacy_profile_comments_public phrase. Add account_privacy_profile_comments_registered phrase. Add account_privacy_profile_comments_self phrase. Add account_privacy_enable_embeds phrase. Add profile_comments column to users table. Add who_can_convo column to users table. You will need to run the updater / patcher for this commit.
10 lines
306 B
SQL
10 lines
306 B
SQL
CREATE TABLE `registration_logs` (
|
|
`rlid` int not null AUTO_INCREMENT,
|
|
`username` varchar(100) not null,
|
|
`email` varchar(100) not null,
|
|
`failureReason` varchar(100) not null,
|
|
`success` boolean DEFAULT 0 not null,
|
|
`ipaddress` varchar(200) not null,
|
|
`doneAt` datetime not null,
|
|
primary key(`rlid`)
|
|
); |