table('agente') ->addColumn('tipo', 'integer', ['null' => true, 'default' => null]) ->addColumn('rut', 'integer', ['null' => true, 'default' => null]) ->addColumn('descripcion', 'string', ['null' => true, 'default' => null, 'limit' => 100]) ->addColumn('representante', 'string', ['null' => true, 'default' => null, 'limit' => 100]) ->addColumn('telefono', 'integer', ['null' => true, 'default' => null]) ->addColumn('correo', 'string', ['null' => true, 'default' => null, 'limit' => 100]) ->addColumn('direccion', 'string', ['null' => true, 'default' => null, 'limit' => 100]) ->addColumn('giro', 'text', ['null' => true, 'default' => null]) ->addColumn('abreviacion', 'text', ['null' => true, 'default' => null, 'limit' => 20]) ->create(); } }