mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
34 lines
575 B
PHP
34 lines
575 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
class CreateReleaseextrafullTable extends Migration {
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('releaseextrafull', function(Blueprint $table)
|
|
{
|
|
$table->integer('releases_id')->unsigned()->primary()->comment('FK to releases.id');
|
|
$table->text('mediainfo', 65535)->nullable();
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('releaseextrafull');
|
|
}
|
|
|
|
}
|