for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bonfim\ActiveRecord\Examples\Database\Migrations;
use Bonfim\ActiveRecord\Schema;
use Bonfim\ActiveRecord\Table;
class UserSchema extends Schema
{
public function up()
$this->create('users', function (Table $table) {
$table->increments();
// ->unsigned();
$table->string('name')->notNull();
});
}
public function down()