{
	"author": "",
	"description": "Create contacts table",
	"created_at": 1466163472648,
	"up": [
    "CREATE TABLE contacts (
      id varchar(255) PRIMARY KEY,
      organization_id varchar(255) DEFAULT NULL,
      first_name varchar(255) DEFAULT NULL,
      last_name varchar(255) DEFAULT NULL,
      title varchar(255) DEFAULT NULL,
      organization_owner_id varchar(255) DEFAULT NULL,
      created_at datetime DEFAULT NULL,
      updated_at datetime DEFAULT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;"
  ],
  "down": [
    "DROP TABLE IF EXISTS contacts"
  ]
}