Skip to content

Instantly share code, notes, and snippets.

@vijayrami
Created April 24, 2020 18:02
Show Gist options
  • Save vijayrami/75312545988806286aade7c24d7e2478 to your computer and use it in GitHub Desktop.
Save vijayrami/75312545988806286aade7c24d7e2478 to your computer and use it in GitHub Desktop.
laravel Table Schema
$table->string('id')->unique();
$table->unsignedInteger('user_id')->nullable();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment