1
0
mirror of https://github.com/writeas/writefreely synced 2025-02-02 12:46:50 +01:00

5 Commits

Author SHA1 Message Date
Matt Baer
bdc4f270f8 Support editing About and Privacy pages from Admin panel
This allows admin to edit these pages from the web, using Markdown. It
also dynamically loads information on those pages now, and makes loading
`pages` templates a little easier to find in the code / more explicit.

It requires this new schema change:

CREATE TABLE IF NOT EXISTS `appcontent` (
  `id` varchar(36) NOT NULL,
  `content` mediumtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

This closes T533
2018-11-18 21:58:50 -05:00
Matt Baer
6220e55559 Provide default updated value
This addresses #18
2018-11-13 08:52:42 -05:00
Matt Baer
bbed72ff6b Remove unneeded followers column from remoteusers
To migrate:

  ALTER TABLE `remoteusers` DROP `followers`;
2018-11-11 12:43:24 -05:00
Matt Baer
3bf10d8074 Remove default value for posts.updated
This closes #3
2018-11-10 00:28:19 -05:00
Matt Baer
18b9b2124e Add database schema 2018-11-07 22:17:15 -05:00