Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created October 23, 2025 15:32
Show Gist options
  • Save NandoKstroNet/75451bb04b55f336f23a2fc0175962de to your computer and use it in GitHub Desktop.
Save NandoKstroNet/75451bb04b55f336f23a2fc0175962de to your computer and use it in GitHub Desktop.
Videos Migration - VideoFlix com Inertia 2 e Laravel em https://codeexperts.com.br
<?php
Schema::create('videos', function (Blueprint $table) {
$table->id();
$table->foreignId('content_id')
->constrained()
->cascadeOnDelete();
$table->uuid('code');
$table->string('name');
$table->string('description')->nullable();
$table->string('thumb')->nullable();
$table->string('video')->nullable();
$table->boolean('is_processed')->default(false);
$table->string('slug');
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment