v0.5.15 - Added subname to news

This commit is contained in:
frederikpyt
2020-08-10 09:37:19 +02:00
parent 726cb52aee
commit bd7800f5a0
6 changed files with 11 additions and 3 deletions
@@ -16,6 +16,7 @@ class CreateNewsTable extends Migration
Schema::create('news', function (Blueprint $table) {
$table->id();
$table->string("name");
$table->string('subname');
$table->text("content");
$table->timestamps();
});