Skip to content

Instantly share code, notes, and snippets.

@BrightnBubbly
Created April 28, 2020 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrightnBubbly/73cd54da849369ddd335ab164c99a8ee to your computer and use it in GitHub Desktop.
Save BrightnBubbly/73cd54da849369ddd335ab164c99a8ee to your computer and use it in GitHub Desktop.
Schema::create('invites', function (Blueprint $table) {
$table->id();
$table->string('email')->unique();
$table->string('token');
$table->boolean('accepted')->default(false);
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment