add file model

This commit is contained in:
j3d1 2019-11-28 04:52:53 +01:00
parent 53037d26af
commit acf701da70
10 changed files with 96 additions and 9 deletions

View file

@ -15,6 +15,7 @@ class CreateContainersTable extends Migration
{
Schema::create('containers', function (Blueprint $table) {
$table->bigIncrements('cid');
$table->string('name');
$table->timestamps();
});
}