{
	"author": "",
	"description": "Create group table",
	"created_at": 1455805983054,
	"up": [
		"CREATE TABLE groups (
        id varchar(255) PRIMARY KEY,
        org_id varchar(255) DEFAULT NULL,
        title varchar(255) DEFAULT NULL,
        description text DEFAULT NULL,
        active tinyint(1) DEFAULT NULL,
        created_at datetime DEFAULT NULL,
        updated_at datetime DEFAULT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;"
	],
	"down": [
		"DROP TABLE IF EXISTS groups"
	]
}