1public function up()
2{
3 // Create the table
4 Schema::create('users', function($table){
5 $table->increments('id');
6 $table->string('email', 255);
7 $table->string('password', 64);
8 $table->boolean('verified');
9 $table->string('token', 255);
10 $table->timestamps();
11 });
12
13 // Insert some stuff
14 DB::table('users')->insert(
15 array(
16 'email' => 'name@domain.com',
17 'verified' => true
18 )
19 );
20}