예제 #1
0
    protected function createVersionTable()
    {
        $this->db->exec('create table if not exists ' . Nano_Migrate::VERSION_TABLE . '(
			  id integer primary key
			, version text
		)');
    }
예제 #2
0
파일: Init.php 프로젝트: studio-v/nano
    /**
     * @return void
     * @param Nano_Db $db
     */
    public static function sqlite(Nano_Db $db)
    {
        $db->exec('create table ' . Nano_Migrate::VERSION_TABLE . '(
			  id integer not null primary key
			, version text
		)');
    }
예제 #3
0
파일: script.php 프로젝트: studio-v/nano
 public function run(Nano_Db $db)
 {
     $db->exec('insert into migration_test(id, comment) values (301, ' . $db->quote('3rd migration script') . ')');
 }