Skip to content
Snippets Groups Projects
Commit 120fae18 authored by Marek Pasieka's avatar Marek Pasieka
Browse files

shortened sql remarks for consistency with MySQL 5.1

parent cd93bc2b
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ databaseChangeLog:
changes:
- createTable:
tableName: permissions_revision
remarks: 'This is used to keep track of changes made to permissions via the admin panel, primarily for auditing purposes. Changes are batched, and a new entry is added for every batch.'
remarks: 'Used to keep track of changes made to permissions.'
columns:
- column:
name: id
......@@ -17,13 +17,13 @@ databaseChangeLog:
- column:
name: before
type: text
remarks: 'Serialized JSON of relvant sections of the permissions graph changed as part of this revision, with their values *before* the changes.'
remarks: 'Serialized JSON of the permissions before the changes.'
constraints:
nullable: false
- column:
name: after
type: text
remarks: 'Serialized JSON of relvant sections of the permissions graph changed as part of this revision, with their values *after* the changes.'
remarks: 'Serialized JSON of the permissions after the changes.'
constraints:
nullable: false
- column:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment