Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. use Illuminate\Database\Schema\Blueprint;
  3. use Illuminate\Database\Migrations\Migration;
  4. class character extends Migration {
  5. public function up()
  6. {
  7. Schema::create('character', function (Blueprint $table) {
  8. $table->string('first_name', 30);
  9. $table->string('last_name', 30);
  10. });
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement