Some fixes and installation documentation (#46)
* 🐛 Fix migration CreateUsersWorkspacesTable with two errors from SQL constraints 🐛 Fix MySQL transaction on CreateUsersWorkspacesTable migration (MariaDB) 🔧 .gitignore for Clockwork * 🚧 Doc Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateUsersWorkspacesTable extends Migration
|
||||
@@ -13,68 +14,59 @@ class CreateUsersWorkspacesTable extends Migration
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
\Illuminate\Support\Facades\DB::transaction(function () {
|
||||
Schema::create('user_workspace', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('workspace_id')->references('id')->on('workspaces')->cascadeOnUpdate()->cascadeOnDelete();
|
||||
$table->foreignId('user_id')->references('id')->on('users')->cascadeOnUpdate()->cascadeOnDelete();
|
||||
$table->unique(['workspace_id', 'user_id']);
|
||||
$table->boolean('is_owner')->default(false);
|
||||
$table->string('access_token')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('user_workspace', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('workspace_id')->unsigned();
|
||||
$table->integer('user_id')->unsigned();
|
||||
$table->unique(['workspace_id', 'user_id']);
|
||||
$table->boolean('is_owner')->default(false);
|
||||
$table->string('access_token')->nullable();
|
||||
$table->foreign('workspace_id')->references('id')->on('workspaces')
|
||||
->onDelete('cascade')->onUpdate('cascade');
|
||||
$table->foreign('user_id')->references('id')->on('users')
|
||||
->onDelete('cascade')->onUpdate('cascade');
|
||||
$table->timestamps();
|
||||
});
|
||||
// Add creator id to forms table
|
||||
Schema::table('forms', function (Blueprint $table) {
|
||||
$table->foreignId('creator_id')->references('id')->on('users')->cascadeOnUpdate()->cascadeOnDelete();
|
||||
});
|
||||
|
||||
// Add creator id to forms table
|
||||
Schema::table('forms', function (Blueprint $table) {
|
||||
$table->integer('creator_id')->unsigned()->nullable();
|
||||
$table->foreign('creator_id')->references('id')->on('users')
|
||||
->onDelete('cascade')->onUpdate('cascade');
|
||||
});
|
||||
// Create relation - can't use models because of new methods clash
|
||||
DB::table('workspaces')
|
||||
->orderBy('id')
|
||||
->chunk(100, function ($workspaces) {
|
||||
foreach ($workspaces as $workspace) {
|
||||
echo '.';
|
||||
|
||||
// Create relation - can't use models because of new methods clash
|
||||
\Illuminate\Support\Facades\DB::table('workspaces')
|
||||
->orderBy('id')
|
||||
->chunk(100, function ($workspaces) {
|
||||
foreach ($workspaces as $workspace) {
|
||||
echo '.';
|
||||
|
||||
// Make sure user wasn't deleted
|
||||
if (!\Illuminate\Support\Facades\DB::table('users')->where('id',
|
||||
$workspace->user_id)->exists()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Create relation
|
||||
$now = now();
|
||||
\Illuminate\Support\Facades\DB::table('user_workspace')->insert([
|
||||
'workspace_id' => $workspace->id,
|
||||
'access_token' => $workspace->access_token,
|
||||
'user_id' => $workspace->user_id,
|
||||
'is_owner' => true,
|
||||
'created_at' => $now,
|
||||
'updated_at' => $now
|
||||
]);
|
||||
|
||||
// Set form creator id
|
||||
foreach (\App\Models\Forms\Form::withTrashed()->where('workspace_id',$workspace->id)->get() as $form) {
|
||||
$form->update(['creator_id'=>$workspace->user_id]);
|
||||
}
|
||||
// Make sure user wasn't deleted
|
||||
if (!DB::table('users')->where('id',
|
||||
$workspace->user_id)->exists()) {
|
||||
continue;
|
||||
}
|
||||
});
|
||||
|
||||
// Drop column
|
||||
Schema::table('workspaces', function (Blueprint $table) {
|
||||
$table->dropColumn(['user_id','access_token']);
|
||||
// Create relation
|
||||
$now = now();
|
||||
\Illuminate\Support\Facades\DB::table('user_workspace')->insert([
|
||||
'workspace_id' => $workspace->id,
|
||||
'access_token' => $workspace->access_token,
|
||||
'user_id' => $workspace->user_id,
|
||||
'is_owner' => true,
|
||||
'created_at' => $now,
|
||||
'updated_at' => $now
|
||||
]);
|
||||
|
||||
// Set form creator id
|
||||
foreach (\App\Models\Forms\Form::withTrashed()->where('workspace_id',$workspace->id)->get() as $form) {
|
||||
$form->update(['creator_id'=>$workspace->user_id]);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Schema::table('user_workspace', function (Blueprint $table) {
|
||||
$table->string('access_token')->nullable(false)->change();
|
||||
});
|
||||
// Drop column
|
||||
Schema::table('workspaces', function (Blueprint $table) {
|
||||
$table->dropColumn(['user_id','access_token']);
|
||||
});
|
||||
|
||||
Schema::table('user_workspace', function (Blueprint $table) {
|
||||
$table->string('access_token')->nullable(false)->change();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user