Skip to content

Instantly share code, notes, and snippets.

@zuckercode
zuckercode / setup_myisam_opengeodb.sql
Created October 23, 2012 22:43
setup_myisam_opengeodb
SET NAMES 'utf8';
BEGIN;
/*
* Table structure for table 'geodb_type_names'
*/
create table geodb_type_names (
type_id integer not null,
type_locale varchar(5) not null,
@zuckercode
zuckercode / setup_innodb_opengeodb.sql
Created October 23, 2012 22:44
setup_innodb_opengeodb
SET NAMES 'utf8';
BEGIN;
/*
* Table structure for table 'geodb_type_names'
*/
create table geodb_type_names (
type_id integer not null,
type_locale varchar(5) not null,
@zuckercode
zuckercode / ZipCoordinates.php
Created October 23, 2012 23:14
Phalcon ZipCoordinates Model
<?php
namespace Application\Backend\Models;
/**
*
*/
class ZipCoordinates extends \Phalcon\Mvc\Model
{
/**