# File lib/http/cookie_jar/mozilla_store.rb, line 150
    def create_table
      self.schema_version = SCHEMA_VERSION
      @db.execute("DROP TABLE IF EXISTS moz_cookies")
      @db.execute("CREATE TABLE moz_cookies (\nid INTEGER PRIMARY KEY,\nbaseDomain TEXT,\nappId INTEGER DEFAULT 0,\ninBrowserElement INTEGER DEFAULT 0,\nname TEXT,\nvalue TEXT,\nhost TEXT,\npath TEXT,\nexpiry INTEGER,\nlastAccessed INTEGER,\ncreationTime INTEGER,\nisSecure INTEGER,\nisHttpOnly INTEGER,\nCONSTRAINT moz_uniqueid UNIQUE (name, host, path, appId, inBrowserElement)\n)\n")
      @db.execute("CREATE INDEX moz_basedomain\nON moz_cookies (baseDomain,\nappId,\ninBrowserElement);\n")
    end