mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Corrected a boolean column to a tiny integer.
This commit is contained in:
parent
6e8a9b34c6
commit
a4db41c6b1
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class CreateTrackFilesTable extends Migration {
|
|||
$table->string('format')->index();
|
||||
$table->timestamps();
|
||||
$table->boolean('is_cacheable')->default(0)->index();
|
||||
$table->boolean('status')->default(0);
|
||||
$table->unsignedTinyInteger('status')->default(0);
|
||||
$table->dateTime('expires_at')->nullable()->index();
|
||||
$table->integer('filesize')->unsigned()->nullable();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue