Skip to content

Instantly share code, notes, and snippets.

@jeffandersen
Created December 13, 2018 16:57
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 jeffandersen/56ece97399cfd3ccf535950096823e1e to your computer and use it in GitHub Desktop.
Save jeffandersen/56ece97399cfd3ccf535950096823e1e to your computer and use it in GitHub Desktop.
// ...
Schema::create('tasks', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->timestamps();
});
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment