{
	"author": "",
	"description": "creating users table",
	"created_at": 1444244109083,
	"up": [
		"CREATE TABLE users (
        id varchar(255) DEFAULT NULL,
        first_name varchar(255) DEFAULT NULL,
        last_name varchar(255) DEFAULT NULL,
        created_at datetime DEFAULT NULL,
        updated_at datetime DEFAULT NULL,
        active tinyint(1) DEFAULT NULL,
        email varchar(255) DEFAULT NULL
      )"
	],
	"down": [
		"DROP TABLE IF EXISTS users"
	]
}