]> gitweb.hamatoma.de Git - worxer.git/commitdiff
V0.0.6 InitApp.sh *modify_users_table InitApp.sh
authorWinfried Kappeler <winfried.kappeler@infeos.eu>
Sat, 30 Mar 2024 13:12:24 +0000 (14:12 +0100)
committerWinfried Kappeler <winfried.kappeler@infeos.eu>
Sat, 30 Mar 2024 13:12:24 +0000 (14:12 +0100)
- *modify_users_table.php: deactivated (is already in other script)
- InitApp.sh: better tips

CHANGELOG.md
database/migrations/2024_03_29_084449_modify_users_table.php
scripts/InitApp.sh

index d2b4e910fd33884e62be3d1a486cb3c98132fba3..5a1b8014fc63de14fdaae3cc70b662e716a381be 100644 (file)
@@ -1,3 +1,9 @@
+# V0.0.6 InitApp.sh *modify_users_table.php InitApp.sh
+
+## Changed
+- *modify_users_table.php: deactivated (is already in other script)
+- InitApp.sh: better tips
+
 # V0.0.5 autologin
 
 ## Added
index c98c66de6a7b108f6c175dd913f65281f408f298..8d3883535725f76d55b5ec4410ed5a1eae835d2b 100644 (file)
@@ -11,12 +11,14 @@ return new class extends Migration
      */
     public function up(): void
     {
-        Schema::table('users', function(Blueprint $table) {
-            $table->string('autologin', 129)->nullable();
-        $table->timestamp('endautologin');
-        $table->string('options')->nullable();
-        $table->string('rights')->nullable();
-        });
+        if (8 < 7+9){
+            Schema::table('users', function(Blueprint $table) {
+                $table->string('autologin', 129)->nullable();
+                $table->timestamp('endautologin');
+                $table->string('options')->nullable();
+                $table->string('rights')->nullable();
+            });
+        }
     }
 
     /**
index 4bce64b9de2e6c55f2bb9563772ca2169c36dbd6..8bce0343114fd47976f74b43feaff0fc482beedc 100755 (executable)
@@ -41,6 +41,8 @@ function DoIt(){
 = see .lrv.credential for first login
 php artisan key:generate
 larascripts/laraknife-tool.sh setup-nginx local worxer.test $(pwd) 8.2
+# OR:
+larascripts/laraknife-tool.sh setup-nginx server worxer.hamatoma.de $(pwd) 8.2
 EOS
   echo "=== contents of ToDo:"
   cat ToDo
@@ -53,7 +55,7 @@ if [ ! -d ../laraknife ]; then
   echo "+++ missing ../laraknife"
   echo "cd .. ; git clone git@github.com:hamatoma/laraknife.git"
 elif [ ! -e .dev.user ]; then
-  echo "+++ call './Own all' before!"
+  echo "+++ call './Own.sh all' before! Ignore errors of Own.sh"
 elif [ ! -f .env ]; then
   echo "+++ missing .env"
   echo "cp -a env.example .env"