Created
October 23, 2025 15:32
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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