From acafb9192a6402a3f3d60d5e6af11cb4576fc96c Mon Sep 17 00:00:00 2001
From: Aaron Parecki <aaron@parecki.com>
Date: Wed, 4 Jan 2017 15:26:51 -0800
Subject: add tags, slug and status field to quill editor

---
 schema/migrations/0002.sql | 5 +++++
 1 file changed, 5 insertions(+)
 create mode 100644 schema/migrations/0002.sql

(limited to 'schema/migrations')

diff --git a/schema/migrations/0002.sql b/schema/migrations/0002.sql
new file mode 100644
index 0000000..60d591a
--- /dev/null
+++ b/schema/migrations/0002.sql
@@ -0,0 +1,5 @@
+ALTER TABLE users
+ADD COLUMN `micropub_slug_field` VARCHAR(255) NOT NULL DEFAULT 'mp-slug' AFTER `micropub_response`;
+
+UPDATE users
+SET micropub_slug_field = 'slug';
-- 
cgit v1.2.3