This website requires JavaScript.
Explore
Help
Register
Sign In
a
/
gosora
Watch
1
Star
0
Fork
You've already forked gosora
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
9970be19e5
gosora
/
schema
/
mssql
/
query_postchunks.sql
4 lines
100 B
MySQL
Raw
Normal View
History
Unescape
Escape
Added the post counter and the associated Control Panel graph. Renamed the pre_render_panel_analytics hook to pre_render_panel_analytics_views. Added a details table to the route graphs. Moved the /topic/ and /reply/ routes to the router generator and hardened them. Made some of the route names more consistent. We now track IPs in odd situations in debug mode. Fixed a bug where people could post on non-existent profiles. Continued work on topic move. Added the postchunks table.
2018-01-14 12:03:20 +00:00
CREATE
TABLE
[
postchunks
]
(
remove more useless files
2022-02-21 03:16:15 +00:00
[
count
]
int
DEFAULT
0
not
null
,
[
createdAt
]
datetime
not
null
Added the post counter and the associated Control Panel graph. Renamed the pre_render_panel_analytics hook to pre_render_panel_analytics_views. Added a details table to the route graphs. Moved the /topic/ and /reply/ routes to the router generator and hardened them. Made some of the route names more consistent. We now track IPs in odd situations in debug mode. Fixed a bug where people could post on non-existent profiles. Continued work on topic move. Added the postchunks table.
2018-01-14 12:03:20 +00:00
)
;