Skip to content

Instantly share code, notes, and snippets.

@sehmbimanvir
Last active March 21, 2019 11:39
Show Gist options
  • Save sehmbimanvir/b53cccf53d7e61b19d81166110fc4532 to your computer and use it in GitHub Desktop.
Save sehmbimanvir/b53cccf53d7e61b19d81166110fc4532 to your computer and use it in GitHub Desktop.
Images Table Schema
Schema::create('images', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('title');
$table->string('path');
$table->double('size', 8, 2)->default(0);
$table->unsignedInteger('auth_by');
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment