Created
April 26, 2017 10:17
-
-
Save jpalala/b76c5420dee7bda697f359766f65afc6 to your computer and use it in GitHub Desktop.
Laravel migration create_users_table
This file contains hidden or 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
| <?php | |
| use Illuminate\Support\Facades\Schema; | |
| use Illuminate\Database\Schema\Blueprint; | |
| use Illuminate\Database\Migrations\Migration; | |
| class CreateUsersTable extends Migration { | |
| /** | |
| * Run the migrations. | |
| * | |
| * @return void | |
| */ | |
| public function up() | |
| { | |
| Schema::create('users', function(Blueprint $table) | |
| { | |
| $table->increments('id'); | |
| $table->string('name'); | |
| $table->string('username'); | |
| $table->string('email'); | |
| $table->string('password'); | |
| $table->string('remember_token')->nullable(); | |
| $table->timestamps(); | |
| }); | |
| } | |
| /** | |
| * Reverse the migrations. | |
| * | |
| * @return void | |
| */ | |
| public function down() | |
| { | |
| Schema::drop('users'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment