diff --git a/CHANGELOG.md b/CHANGELOG.md index ce89e7218..da14ddd94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ v0.32 (master) * Implement XEP-0390: Entity Capabilities 2.0 * Refactor all the OMEMO related code, drop the Bundles table, handle most of the logic in the JS, refactor the fingerprints resolver, cleanup * Fix #1459 Allow public posts to be read without Javascript enabled +* Fix #1460 Change geturl and seturl to text in Upload table v0.31 --------------------------- diff --git a/database/migrations/20250826164924_change_urls_to_text_upload_table.php b/database/migrations/20250826164924_change_urls_to_text_upload_table.php new file mode 100644 index 000000000..f119fb942 --- /dev/null +++ b/database/migrations/20250826164924_change_urls_to_text_upload_table.php @@ -0,0 +1,29 @@ +schema->table('upload', function (Blueprint $table) { + $table->text('geturl')->nullable()->change(); + $table->text('puturl')->nullable()->change(); + }); + } + + public function down() + { + $this->schema->table('upload', function (Blueprint $table) { + $table->string('geturl')->nullable()->change(); + $table->string('puturl')->nullable()->change(); + }); + } +}