<?php

/**
 * Description of DB
 *
 * @author Arkadiusz Rychlik <a.rychlik at eppe.com.pl>
 */
class Main_Newsletter_Module_Initer_DB {

	static $sql_before = "";
	static $sql_after = "";

	static function init() {

		static::$sql_before && R::exec(static::$sql_before);

		static::$sql_after && R::exec(static::$sql_after);
	}

}
