sqlite to mysql migrate command

This commit is contained in:
Saeed Vaziry
2024-03-23 17:39:51 +01:00
parent 6529c349b1
commit 3afb6b7eb4
3 changed files with 76 additions and 3 deletions

View File

@ -11,8 +11,8 @@ public function up(): void
Schema::create('source_controls', function (Blueprint $table) {
$table->id();
$table->string('provider');
$table->json('provider_data')->nullable()->after('provider');
$table->longText('access_token')->nullable(); // @TODO: remove this column
$table->json('provider_data')->nullable();
$table->longText('access_token')->nullable();
$table->timestamps();
});
}