Created
February 13, 2016 02:25
-
-
Save owenconti/16fc0fc59fdcb4b89761 to your computer and use it in GitHub Desktop.
laravel new table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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