| 
							
						 | 
						
							
							
								
							
							
	144547009b
						 | 
						
							
							
								
								
								All URL fields are now binary and longer
							
							
							
							
							
						 | 
						
							2022-09-04 07:54:01 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	9935e8e711
						 | 
						
							
							
								
								
								Remove event.adjust field
							
							
							
							
							
							
							
							- It was confusing and introduced complexity that wasn't worth the unclear gain 
							
						 | 
						
							2021-10-03 13:42:32 -04:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	f29bd23ea8
						 | 
						
							
							
								
								
								New function to convert BBCode for a given ID
							
							
							
							
							
						 | 
						
							2021-07-08 13:47:46 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	c3cfc443ae
						 | 
						
							
							
								
								
								Handling of special characters
							
							
							
							
							
						 | 
						
							2021-06-14 12:38:42 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	7106106f11
						 | 
						
							
							
								
								
								Formatted index list
							
							
							
							
							
						 | 
						
							2021-06-14 12:15:10 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	3d74d0a49c
						 | 
						
							
							
								
								
								Updated documentation
							
							
							
							
							
						 | 
						
							2021-06-14 08:54:57 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	96f07c7288
						 | 
						
							
							
								
								
								Indexes and foreign keys added
							
							
							
							
							
						 | 
						
							2021-06-14 08:53:37 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	2cd0c1d30d
						 | 
						
							
							
								
								
								Trailing whitespace removed
							
							
							
							
							
						 | 
						
							2021-06-14 06:10:11 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	fd30df7300
						 | 
						
							
							
								
								
								Pad the header
							
							
							
							
							
						 | 
						
							2021-06-14 05:58:51 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	4095e6c9be
						 | 
						
							
							
								
								
								Pad the lengths of the columns
							
							
							
							
							
						 | 
						
							2021-06-14 05:33:47 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	a827f948c8
						 | 
						
							
							
								
								
								Reversed "null"
							
							
							
							
							
						 | 
						
							2021-06-14 05:14:09 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	31db9dbef7
						 | 
						
							
							
								
								
								Added default value "NULL"
							
							
							
							
							
						 | 
						
							2021-06-14 05:08:01 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						| 
							
						 | 
						
							
							
								
							
							
	84ab5d6159
						 | 
						
							
							
								
								
								Updates database structure documentation
							
							
							
							
							
						 | 
						
							2021-06-13 20:33:50 +00:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						
							
								
								
									 
									Alexandre Alapetite
								
							 
						 | 
						
							
							
								
							
							
	d2901dcb00
						 | 
						
							
							
								
								
								Fix for MySQL 5.7+
							
							
							
							
							
							
							
							https://github.com/friendica/friendica/issues/2786
Only tested on Ubuntu 16.10 with MySQL 5.7.17.
https://dev.mysql.com/doc/refman/8.0/en/timestamp-initialization.html
https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sqlmode_no_zero_date
As of MySQL 5.7.4, NO_ZERO_DATE is deprecated.
Patch based on the following search & replace (and then reverting some
changes in libraries):
```sh
grep -l '= "0000-00-00"' -r . | xargs sed -i -e "s/= \"0000-00-00\"/=
'0000-00-00'/g"
grep -l "0000-00-00" -r . | xargs sed -i -e "s/0000-00-00/0001-01-01/g"
grep -l "!= '0001-01-01'" -r . | xargs sed -i -e "s/!= '0001-01-01'/>
'0001-01-01'/g"
grep -l " === '0001-01-01'" -r . | xargs sed -i -e "s/ === '0001-01-01'/
<= '0001-01-01'/g"
grep -l " == '0001-01-01'" -r . | xargs sed -i -e "s/ == '0001-01-01'/
<= '0001-01-01'/g"
grep -l "strpos(\$dob, '0000-') === 0" -r . | xargs sed -i -e
"s/strpos(\$dob, '0000-') === 0/strpos(\$dob, '0000-') === 0 ||
strpos(\$dob, '0001-') === 0/g"
grep -l 'array("", "0001-01-01")' -r . | xargs sed -i -e 's/array("",
"0001-01-01")/array("", "0000-00-00", "0001-01-01")/g'
grep -l "\$dob = '0000-'" -r . | xargs sed -i -e "s/\$dob =
'0000-'/\$dob = '0001-'/g"
```
							
						 | 
						
							2017-04-11 23:00:45 +02:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 | 
					
				
					
						
							
								
								
									 
									rabuzarus
								
							 
						 | 
						
							
							
								
							
							
	12f8b0630d
						 | 
						
							
							
								
								
								docu - add schema of each db table
							
							
							
							
							
						 | 
						
							2015-12-28 02:50:25 +01:00 | 
						
						
							
							
							
							
								
							
							
							
								
							
							
						 |