]> gitweb.hamatoma.de Git - gadeku.git/commitdiff
remove *alter_words*.php
authorHamatoma <author@hamatoma.de>
Sat, 4 May 2024 16:33:32 +0000 (18:33 +0200)
committerHamatoma <author@hamatoma.de>
Sat, 4 May 2024 16:33:32 +0000 (18:33 +0200)
CHANGELOG.md
database/migrations/2024_04_29_191459_alter_words.php [deleted file]

index dbce0d192893618bf1e962324b8c3b4ad5cf1e2d..f7f8de0f040f12af8bb295f2528a31e5efa8e9a5 100644 (file)
@@ -1,3 +1,14 @@
+# V 0.2.6 Word umgebaut, verbImperfect
+
+## Changed
+- Module Verb und Noun entfallen, Word arbeitet mit strukturiertem Attribut options
+- GermanGrammar: Korrekturen in verbImperfect() und verbPresent()
+- Phrase:
+  - umbenannt: phrase_id in german_id
+- Word:
+  - Wortarten als Registerblätter
+- lokale Dateien für CSS+JS
+
 # V 0.2.5 Page
 
 ## Changed
diff --git a/database/migrations/2024_04_29_191459_alter_words.php b/database/migrations/2024_04_29_191459_alter_words.php
deleted file mode 100644 (file)
index e13ba0a..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-use Illuminate\Database\Migrations\Migration;
-use Illuminate\Database\Schema\Blueprint;
-use Illuminate\Support\Facades\Schema;
-
-return new class extends Migration {
-    /**
-     * Run the migrations.
-     */
-    public function up(): void
-    {
-        Schema::table('words', function (Blueprint $table) {
-            $table->string('info', 128)->nullable();
-        });
-    }
-
-    /**
-     * Reverse the migrations.
-     */
-    public function down(): void
-    {
-        //
-    }
-};