Skip to content

Instantly share code, notes, and snippets.

@owenconti
Created February 13, 2016 02:25
Show Gist options
  • Save owenconti/16fc0fc59fdcb4b89761 to your computer and use it in GitHub Desktop.
Save owenconti/16fc0fc59fdcb4b89761 to your computer and use it in GitHub Desktop.
laravel new table
Schema::create('table_name', function(Blueprint $table) {
$table->increments('id');
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment