Gearshift.rules[1] = {
	// create the demo table
	up: function() {
		return this.e("CREATE TABLE demo_table (id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(30), movie VARCHAR(30))").success;
	},
	down: function() {
		return this.e("DROP TABLE demo_table").success;
	}
};

Gearshift.rules[2] = {
	up: function() {
		a = this.e("INSERT INTO demo_table (name, movie) VALUES (?, ?)", ['Trey Parker', 'Team America: World Police']).success;
		b = this.e("INSERT INTO demo_table (name, movie) VALUES (?, ?)", ['Kristen Miller', 'Puff, Puff, Pass']).success;
		c = this.e("INSERT INTO demo_table (name, movie) VALUES (?, ?)", ['Michael Madsen', 'Buttermilk Sky']).success;
		return a && b && c;
	},
	down: function() {
		return this.e("DELETE FROM demo_table");
	}
};