v0.8.3 - Added uploade images function

This commit is contained in:
2020-08-12 12:28:05 +02:00
parent 9c26526740
commit e080b69d98
14 changed files with 83 additions and 21 deletions
@@ -21,6 +21,7 @@ class CreateEvents extends Migration
$table->string("accountable");
$table->longText("description");
$table->dateTime("date");
$table->foreignId('resource_id')->nullable()->constrained('resources', 'id');
$table->timestamps();
});
}
@@ -18,6 +18,7 @@ class CreateNewsTable extends Migration
$table->string("name");
$table->string('subname');
$table->text("content");
$table->foreignId('resource_id')->nullable()->constrained('resources', 'id');
$table->timestamps();
});
}