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
299 B
SQL
10 lines
299 B
SQL
CREATE TABLE "registration_logs" (
|
|
`rlid` serial not null,
|
|
`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` timestamp not null,
|
|
primary key(`rlid`)
|
|
); |