Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-24 | Revert "Use a different Date data type" | louiz’ | |
This reverts commit 857c7d3972a03cbeebf730d99b924d3710dee6a0. | |||
2018-04-13 | Refactor that fixes a compilation issue in Release mode | louiz’ | |
Some template specialization were not found, because they were not declared at the point they were used. We moved things around, things are less inter-dependant, and also now it works. | |||
2018-04-11 | Use a different Date data type | louiz’ | |
PLEASE backup your database before testing this commit, and report any migration issue. In postgresql, we use timestamp with timezone. In sqlite3 we use REAL (the date is expressed as julianday) This requires a migration of the muclogline_ table: In postgresql it’s pretty simple, we convert all the integer into timestamps With sqlite3, we actually rename the table, create the new one with the correct type, then copy everything to the new table, with a conversion function for the Date_ column, and then we delete the old table. fix #3343 | |||
2018-03-18 | Allow the execution of multiple commands after the IRC connection | louiz’ | |
fix #3275 | |||
2018-03-17 | Revert "Use if constexpr to make things a lot more readable" | louiz’ | |
This reverts commit d62ca9f87906be6f046fe9d07afb8bfb69c166e3. | |||
2018-03-16 | Use if constexpr to make things a lot more readable | louiz’ | |
2018-01-14 | Remove all the ugly database debug | louiz’ | |
2017-12-02 | Add postgresql support | louiz’ | |
2017-07-08 | Replace a function argument from ... to the template Args&&... thing | louiz’ | |
2017-07-08 | Remove many log_debug from the database module | louiz’ | |
2017-07-08 | Remove a bunch of useless string_literal usage | louiz’ | |
2017-07-08 | Remove all the empty “options” members in Column classes | louiz’ | |
By using SFINAE to use that member only when it exists. | |||
2017-06-16 | At startup, upgrade all database tables by adding missing columns | louiz’ | |
2017-06-14 | Add a 0 default value for template argument N | louiz’ | |
2017-06-14 | Implement our own database ORM, and update the whole code to use it | louiz’ | |
Entirely replace LiteSQL fix #3271 |