Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10668871
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
View Options
diff --git a/migrations/v17.go b/migrations/v17.go
new file mode 100644
index 0000000..19607af
--- /dev/null
+++ b/migrations/v17.go
@@ -0,0 +1,51 @@
+/*
+ * Copyright © 2019-2024 Musing Studio LLC.
+ *
+ * This file is part of WriteFreely.
+ *
+ * WriteFreely is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, included
+ * in the LICENSE file in this source code package.
+ */
+
+package migrations
+
+import (
+ "context"
+ "database/sql"
+
+ wf_db "github.com/writefreely/writefreely/db"
+)
+
+func increasePostContentSize(db *datastore) error {
+ if db.driverName != driverMySQL {
+ // Only MySQL databases need this migration
+ return nil
+ }
+
+ dialect := wf_db.DialectMySQL
+ return wf_db.RunTransactionWithOptions(context.Background(), db.DB, &sql.TxOptions{}, func(ctx context.Context, tx *sql.Tx) error {
+ builders := []wf_db.SQLBuilder{
+ dialect.AlterTable("posts").
+ ChangeColumn("content",
+ dialect.Column(
+ "column",
+ wf_db.ColumnTypeLongText,
+ wf_db.OptionalInt{
+ Set: false,
+ Value: 0,
+ }).SetNullable(false)),
+ }
+ for _, builder := range builders {
+ query, err := builder.ToSQL()
+ if err != nil {
+ return err
+ }
+ if _, err := tx.ExecContext(ctx, query); err != nil {
+ return err
+ }
+ }
+ return nil
+ })
+}
+
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, May 15, 10:18 AM (20 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3239660
Attached To
rWF WriteFreely
Event Timeline
Log In to Comment