diff options
Diffstat (limited to 'db/08to09.sql')
-rw-r--r-- | db/08to09.sql | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/db/08to09.sql b/db/08to09.sql index 892df4a39..4d1830611 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -1,2 +1,12 @@ -// SQL commands to update an 0.8.x version of Laconica -// to 0.9.x. +alter table notice + modify column content text comment 'update content'; + +alter table message + modify column content text comment 'message content'; + +alter table profile + modify column bio text comment 'descriptive biography'; + +alter table user_group + modify column description text comment 'group description'; + |