Rename field to image_link and add field to edit #111

This commit is contained in:
Nabeel Shahzad
2018-01-03 12:47:12 -06:00
parent 15726d0610
commit 2394b8e419
5 changed files with 59 additions and 50 deletions

View File

@@ -16,7 +16,7 @@ class CreateRanksTable extends Migration
Schema::create('ranks', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 50);
$table->string('link')->nullable();
$table->string('image_link')->nullable();
$table->unsignedInteger('hours')->default(0);
$table->boolean('auto_approve_acars')->default(false);
$table->boolean('auto_approve_manual')->default(false);